UNPKG

236 BTypeScriptView Raw
1const cellphoneFormat = (value: string) => {
2 value = value.replace(/\D/g, '');
3 value = value.replace(/^(\d{2})(\d)/g, '($1) $2');
4 value = value.replace(/(\d)(\d{4})$/, '$1-$2');
5 return value;
6};
7
8export default cellphoneFormat;