Posts by Álister Lopes Ferreira • 1 point
2 posts
-
-3
votes2
answers17029
viewsA: CNPJ validation in Javascript
I made a CPF and CNPJ validator and formatter that I use in my project with Angular export class CpfCnpjUtils { static isCpfValid(cpf: string): boolean { const cpfLength = 11; const weights = [2, 3,…
-
-4
votes2
answers12937
viewsA: Validate CPF with Javascript Regular Expression
I did a CPF and CNPJ validator with typescript export class CpfCnpjUtils { static isCpfValid(cpf: string): boolean { const cpfLength = 11; const weights = [2, 3, 4, 5, 6, 7, 8, 9, 10, 11]; return…