jcinfo-utils 1.0.45 → 1.0.46

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +3 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -18,6 +18,7 @@ import {
18
18
  import { formatFileSize } from './src/formatFileSize.js'
19
19
  import { retirarAcentuacao } from './src/retirarAcentuacao.js'
20
20
  import { fileExists } from './src/utils.js'
21
+ import { validarCPF, validarCNPJ } from './src/validator.js'
21
22
 
22
23
  // ===================================================== CONFIGURAÇÕES
23
24
 
@@ -233,4 +234,6 @@ export {
233
234
  updateDotEnvKey,
234
235
  updateVersionDate,
235
236
  updateVersionBuild,
237
+ validarCPF,
238
+ validarCNPJ,
236
239
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jcinfo-utils",
3
- "version": "1.0.45",
3
+ "version": "1.0.46",
4
4
  "description": "Pacote de funções utilitárias",
5
5
  "main": "index.js",
6
6
  "type": "module",