cpf-utils for JavaScript

Toolkit to deal with CPF data (Brazilian personal ID): validation, formatting and generation of valid IDs.
Browser Support
Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ | 11 ✔ |
Installation
$ npm install --save cpf-utils
$ bun add cpf-utils
Import
const cpfUtils = require('cpf-utils')
import cpfUtils from 'cpf-utils'
import { isValid, generate, format } from 'cpf-utils'
or import it through your HTML file, using CDN:
<script src="https://cdn.jsdelivr.net/npm/cpf-utils@latest/dist/cpf-utils.min.js"></script>
API
cpf-utils
is only a wrapper to the libraries maintained by LacusSoft, cpf-fmt
, cpf-gen
and cpf-val
, so you can refer directly to their specific documentation. Anyway, the API is detailed hereby with examples.
cpfUtils.format(string[, options])
returns string
The format
method expects a string as its first parameter.
If the input does not contain 11 digits (it does not require to be a valid CPF, but it MUST be 11-digits long) an onFail
callback is invoked. By default, a copy of the input is returned as a fallback, but this callback and other customizations may be defined in the second parameter.
const cpf = '47844241055'
cpfUtils.format(cpf)
cpfUtils.format(cpf, {
hidden: true
})
cpfUtils.format(cpf, {
delimiters: {
dot: '',
dash: '_'
}
})
Here are the available default configurations that can be overwritten by the options
parameter:
cpfUtils.format(cpf, {
delimiters: {
dot: '.',
dash: '-'
},
escape: false,
hidden: false,
hiddenKey: '*',
hiddenRange: {
start: 3,
end: 10
},
onFail(value) {
return value
}
})
cpfUtils.generate([options])
returns string
If you need to generate valid CPF's to work with, the generate
method make this task easy and safe. You just need to invoke it with no parameters to obtain an 11-digits string, however, you can provide an options
object to configure its output, like flagging it to format or to complete a digits string with a valid CPF sequence:
let cpf = cpfUtils.generate()
cpf = cpfUtils.generate({
format: true
})
cpf = cpfUtils.generate({
prefix: '528250911'
})
cpf = cpfUtils.generate({
prefix: '528250911',
format: true
})
The default configurations are:
cpfUtils.generate({
format: false,
prefix: ''
})
Keep in mind that, for the prefix
option, it must be a string containing up to 9 digits.
cpfUtils.isValid(string)
returns boolean
The isValid
method receives a string as its single parameter, evaluate it and returns true
or false
as output. This parameter may contain any character like letters, symbols, punctuation or white spaces, but it will immediately return false
in case the expected 11 digits are not found to be deeply evaluated.
cpfUtils.isValid('12345678909')
cpfUtils.isValid('123.456.789-09')
cpfUtils.isValid('12345678910')
^^
Contribution & Support
We welcome contributions! Please see our Contributing Guidelines for details. But if you find this project helpful, please consider:
License
This project is licensed under the MIT License - see the LICENSE file for details.
Changelog
See CHANGELOG for a list of changes and version history.
Made with ❤️ by Lacus Solutions