├── .gitignore ├── LICENSE ├── README.md ├── beautify-with-words.js ├── bin └── beautify-with-words ├── package.json └── test ├── fixtures └── nestedReturn.js ├── mocha.opts └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /node_modules 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zertosh/beautify-with-words/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zertosh/beautify-with-words/HEAD/README.md -------------------------------------------------------------------------------- /beautify-with-words.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zertosh/beautify-with-words/HEAD/beautify-with-words.js -------------------------------------------------------------------------------- /bin/beautify-with-words: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zertosh/beautify-with-words/HEAD/bin/beautify-with-words -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zertosh/beautify-with-words/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/nestedReturn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zertosh/beautify-with-words/HEAD/test/fixtures/nestedReturn.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --reporter spec 2 | --ui tdd 3 | -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zertosh/beautify-with-words/HEAD/test/test.js --------------------------------------------------------------------------------