Skip to content

Instantly share code, notes, and snippets.

@webarthur
Last active December 8, 2023 18:39
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save webarthur/aa1fe0b71868ee9d0097f69f927d72d6 to your computer and use it in GitHub Desktop.
Save webarthur/aa1fe0b71868ee9d0097f69f927d72d6 to your computer and use it in GitHub Desktop.
Função JavaScript para validar CNPJ
function validaCNPJ (cnpj) {
var b = [ 6, 5, 4, 3, 2, 9, 8, 7, 6, 5, 4, 3, 2 ]
var c = String(cnpj).replace(/[^\d]/g, '')
if(c.length !== 14)
return false
if(/0{14}/.test(c))
return false
for (var i = 0, n = 0; i < 12; n += c[i] * b[++i]);
if(c[12] != (((n %= 11) < 2) ? 0 : 11 - n))
return false
for (var i = 0, n = 0; i <= 12; n += c[i] * b[i++]);
if(c[13] != (((n %= 11) < 2) ? 0 : 11 - n))
return false
return true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment