cnpj
TypeScript icon, indicating that this package has built-in type declarations

5.0.0 • Public • Published

CNPJ

Format, validate and generate CNPJ numbers.

Installation

Node

npm install cnpj

or, if you are using jsr

npx jsr add @brazil/cnpj
import { validate, format, generate } from 'cnpj';

Deno

deno add @brazil/cnpj
import { validate, format, generate } from '@brazil/cnpj';

Usage

// Validation
const valid = validate('38.981.218/0001-47'); // true

// Format
const formatted = format(88415345000157) // 88.415.345/0001-57

// Generation
const generated = generate(); // randomly generated, valid CNPJ

License

MIT License © Gabriel Silva

Package Sidebar

Install

npm i cnpj

Weekly Downloads

2,260

Version

5.0.0

License

MIT

Unpacked Size

4.49 kB

Total Files

5

Last publish

Collaborators

  • gabrielizaias