br-validation
Version:
Funções úteis para validação e formatação de dados brasileiros
10 lines (9 loc) • 340 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const isCpfOrCnpj = (value) => {
const onlyNumbers = value.replace(/[^\d]+/g, '');
const isCpf = onlyNumbers.length === 11;
const isCnpj = onlyNumbers.length === 14;
return isCpf ? 'cpf' : isCnpj ? 'cnpj' : null;
};
exports.default = isCpfOrCnpj;