jcinfo-utils 1.0.47 → 1.0.48
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.
- package/index.d.ts +2 -0
- package/index.js +2 -1
- package/package.json +1 -1
- package/src/utils.js +5 -0
package/index.d.ts
CHANGED
package/index.js
CHANGED
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
} from './src/updateDotEnv.js'
|
|
18
18
|
import { formatFileSize } from './src/formatFileSize.js'
|
|
19
19
|
import { retirarAcentuacao } from './src/retirarAcentuacao.js'
|
|
20
|
-
import { fileExists } from './src/utils.js'
|
|
20
|
+
import { fileExists, encodeUriBase64 } from './src/utils.js'
|
|
21
21
|
import { validarCPF, validarCNPJ } from './src/validator.js'
|
|
22
22
|
|
|
23
23
|
// ===================================================== CONFIGURAÇÕES
|
|
@@ -230,6 +230,7 @@ export {
|
|
|
230
230
|
formatFileSize,
|
|
231
231
|
retirarAcentuacao,
|
|
232
232
|
fileExists,
|
|
233
|
+
encodeUriBase64,
|
|
233
234
|
updateDotEnv,
|
|
234
235
|
updateDotEnvKey,
|
|
235
236
|
updateVersionDate,
|
package/package.json
CHANGED