lion/packages/ui/components/input-amount/preprocessors.js
2022-10-31 16:55:07 +01:00

9 lines
233 B
JavaScript

/**
* Preprocesses by removing non-digits
* Allows space, comma and dot as separator characters
*
* @param {string} value Number to format
*/
export function preprocessAmount(value) {
return value.replace(/[^0-9,. ]/g, '');
}