├── .editorconfig ├── .gitignore ├── .npmignore ├── README.md ├── index.js ├── package.json ├── src └── validator.coffee └── test └── test.coffee /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoryak/address-validator/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | node_modules 4 | *.log 5 | 6 | lib 7 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | src 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoryak/address-validator/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/validator'); 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoryak/address-validator/HEAD/package.json -------------------------------------------------------------------------------- /src/validator.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoryak/address-validator/HEAD/src/validator.coffee -------------------------------------------------------------------------------- /test/test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoryak/address-validator/HEAD/test/test.coffee --------------------------------------------------------------------------------