mirror of
https://github.com/jlengrand/adyen-web.git
synced 2026-03-10 08:01:22 +00:00
7 lines
179 B
TypeScript
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, '');
|
|
};
|