nexxtway/react-rainbow

View on GitHub
src/components/CurrencyInput/hooks/useGroupSeparator.js

Summary

Maintainability
A
1 hr
Test Coverage
import { useMemo } from 'react';
import { getSeparator } from '../helpers';

export default function useGroupSeparator({ locale, style, currency }) {
    return useMemo(() => getSeparator({ locale, type: 'group', style, currency }), [
        currency,
        locale,
        style,
    ]);
}