├── .eslintrc.js ├── .gitignore ├── LICENSE.md ├── README.md ├── package.json ├── src └── index.ts └── test └── index.spec.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alecrios/nano-address-validator/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .rts2_cache_* 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alecrios/nano-address-validator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alecrios/nano-address-validator/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alecrios/nano-address-validator/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alecrios/nano-address-validator/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alecrios/nano-address-validator/HEAD/test/index.spec.js --------------------------------------------------------------------------------