Functions to handle Brazilian CPF numbers
Precisando de um desenvolvedor? Entre em contato: theuves@gmail.com
You can install it with npm or yarn.
Try:
- npm:
npm install cpf
- yarn:
yarn add cpf
const CPF = require('cpf');
Now, CPF
is a object with some functions:
format
generate
isValid
Format a CPF number.
CPF.format('11144477735');
//=> '111.444.777-35'
cpf
{string} A CPF number.
Returns a string with the formatted CPF number.
Generate a random CPF number.
formatted
{boolean}true
by default. It will generate a formatted CPF number.invalid
{boolean}false
by default. It will generate a invalid CPF number.
Returns a CPF number.
Check if a CPF number is valid.
CPF.isValid('111.444.777-35');
// true
CPF.isValid('111.444.777-42');
// false
CPF.isValid('111.444.777-42', true);
// true
CPF.isValid('111.444.777', true);
// false
cpf
{string} Check if the CPF number is valid.byLength
{boolean}false
by default. Check only if the length is valid.
Returns the check result.
MIT © Matheus Alves