mfrancis95 / validator-brazil

Validate CPF, CEP and CNPJ numbers πŸ‡§πŸ‡·

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

validator-brazil

With this module, you can validate the CPF, CNPJ and CEP numbers. Documents only Brazilian.

npm version

Getting started

Install with NPM

$ npm install validator-brazil --save

Install with Yarn

$ yarn add validator-brazil

How to use with ES6

CPF

import { isCpf } from "validator-brazil";

// No points or hyphens
isCpf("29018170097"); // false
isCpf("12312345600"); // false

// With points or hyphens
isCpf("123.123.456-00"); // false

CNPJ

import { isCnpj, isCpf, isCep } from "validator-brazil";

// No points or hyphens
isCnpj("54334068000136"); // true
isCnpj("00111222000100"); // false

// With points or hyphens
isCnpj("54.334.068/0001-36"); // true

CEP

import { isCep } from "validator-brazil";

// No points or hyphens
isCep("43710130"); // true
isCep("5471013423"); // false

// With points or hyphens
isCep("43710-130"); // true

How to use with ES5

const validator = require("validator-brazil");

// No points or hyphens
validator.isCnpj("54334068000136"); // true
validator.isCnpj("00111222000100"); // false
validator.isCpf("29018170097"); // true
validator.isCpf("12312345600"); // false

// With points or hyphens
validator.isCnpj("54.334.068/0001-36"); // true
validator.isCpf("123.123.456-00"); // false

About

Validate CPF, CEP and CNPJ numbers πŸ‡§πŸ‡·

License:MIT License


Languages

Language:JavaScript 100.0%