This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Validar numeração CNJ de processos judiciais | |
* | |
* @param {String} numero | |
* @returns {boolean} | |
*/ | |
function validarNumeroUnicoProcesso(numero) { | |
const bcmod = (x, y) => | |
{ | |
const take = 5; |