├── .editorconfig ├── .gitignore ├── .jscsrc ├── .jshintignore ├── .jshintrc ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── lib └── hasbin.js ├── package.json └── test └── unit ├── lib └── hasbin.js ├── mock └── fs.js └── setup.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/springernature/hasbin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | coverage 2 | node_modules 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/springernature/hasbin/HEAD/.jscsrc -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- 1 | coverage 2 | node_modules 3 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/springernature/hasbin/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/springernature/hasbin/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/springernature/hasbin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/springernature/hasbin/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/springernature/hasbin/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/springernature/hasbin/HEAD/README.md -------------------------------------------------------------------------------- /lib/hasbin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/springernature/hasbin/HEAD/lib/hasbin.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/springernature/hasbin/HEAD/package.json -------------------------------------------------------------------------------- /test/unit/lib/hasbin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/springernature/hasbin/HEAD/test/unit/lib/hasbin.js -------------------------------------------------------------------------------- /test/unit/mock/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/springernature/hasbin/HEAD/test/unit/mock/fs.js -------------------------------------------------------------------------------- /test/unit/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/springernature/hasbin/HEAD/test/unit/setup.js --------------------------------------------------------------------------------