Releases: gabeidx/cnpj
Releases · gabeidx/cnpj
5.0.0
v4.0.3
Full Changelog: v4.0.2...v4.0.3
v4.0.2
What's Changed
- update tests to run on compiled files instead of source by @GabrielIzaias in #21
- chore: update dev dependencies to latest versions by @GabrielIzaias in #29
Full Changelog: v4.0.1...v4.0.2
v4.0.1
v4.0.0
v3.2.1
v3.2.0
- Added support for Deno: https://deno.land/x/cnpj
v3.1.0
v3.0.0
This release mostly changes what is expected from a call to validate
with a string with non numeric characters that are not .
, /
or -
.
// on v2.0.1
const valid = validate('abcd11333977000147efgh'); // true
// on v3.0.0
const valid = validate('abcd11333977000147efgh'); // false