Files
adyen-web/packages/lib/src/utils/Formatters/formatters.ts

7 lines
179 B
TypeScript

import { FormatterFn } from './types';
// Removes all non-digits
export const digitsOnlyFormatter: FormatterFn = (value: string) => {
return value.replace(/[^0-9]/g, '');
};