CEP Validator JS
let isCEP = (cep) => (/^[0-9]{8}$/).test(cep);
GutoTrosla
let isCEP = (cep) => (/^[0-9]{8}$/).test(cep);