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
/
cep.ts
4 lines
(3 loc)
•
130 B
text/typescript
View Raw
1
2
3
4
export
function
maskCEP
(
value
:
string
):
string
{
return
value.
replace
(
/\D/g
,
""
).
replace
(
/(\d{5})(\d{3})/
,
"$1-$2"
); }