├── .editorconfig ├── .gitignore ├── .jscs.json ├── .jshintignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── AUTHORS ├── CHANGELOG.md ├── CONTRIBUTION.md ├── LICENSE ├── README.md ├── index.js ├── package.json └── test └── test.b_.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azproduction/b_/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | .DS_Store 4 | coverage 5 | -------------------------------------------------------------------------------- /.jscs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azproduction/b_/HEAD/.jscs.json -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azproduction/b_/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .DS_Store 3 | coverage 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azproduction/b_/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Mikhail Davydov 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | Version 1.0.0: 2 | * Initial release. 3 | -------------------------------------------------------------------------------- /CONTRIBUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azproduction/b_/HEAD/CONTRIBUTION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azproduction/b_/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azproduction/b_/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azproduction/b_/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azproduction/b_/HEAD/package.json -------------------------------------------------------------------------------- /test/test.b_.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azproduction/b_/HEAD/test/test.b_.js --------------------------------------------------------------------------------