UNPKG
mask-utils-ccg
Version:
latest (4.2.0)
4.2.0
4.0.0
3.0.0
2.0.0
Biblioteca de máscaras para CPF, CNPJ, Telefone e CEP
mask-utils-ccg
/
src
/
cpf.ts
7 lines
•
225 B
text/typescript
View Raw
1
2
3
4
5
6
7
export function maskCPF(value: string): string {
return
value .replace(
/\D/g
,
""
) .replace(
/(\d{3})(\d)/
,
"
$1
.
$2
"
) .replace(
/(\d{3})(\d)/
,
"
$1
.
$2
"
) .replace(
/(\d{3})(\d{1,2})$/
,
"
$1
-
$2
"
); }