MCPcopy Create free account
hub / github.com/BrasilAPI/BrasilAPI / onlyDigits

Function onlyDigits

services/cep/cep.js:9–11  ·  view source on GitHub ↗
(cep)

Source from the content-addressed store, hash-verified

7const DEFAULT_TIMEOUT = 3 * 1000;
8
9function onlyDigits(cep) {
10 return cep.replace(/\D/g, '');
11}
12
13function isValidCep(cep) {
14 const cleanCep = onlyDigits(cep);

Callers 3

isValidCepFunction · 0.85
fetchOpenCepFunction · 0.85
fetchCepFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected