Preview: addSeparators.ts
Size: 195 B
/home/byroehnu/easepaybiz.easetack.com/node_modules/react-currency-input-field/src/components/utils/addSeparators.ts
/**
* Add group separator to value eg. 1000 > 1,000
*/
export const addSeparators = (value: string, separator = ','): string => {
return value.replace(/\B(?=(\d{3})+(?!\d))/g, separator);
};
Directory Contents
Dirs: 1 × Files: 15