├── .circleci └── config.yml ├── .eslintrc ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── __snapshots__ └── test.js.snap ├── bin └── pretty-fast ├── package.json ├── pretty-fast.js └── test.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pretty-fast/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pretty-fast/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pretty-fast/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pretty-fast/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pretty-fast/HEAD/README.md -------------------------------------------------------------------------------- /__snapshots__/test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pretty-fast/HEAD/__snapshots__/test.js.snap -------------------------------------------------------------------------------- /bin/pretty-fast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pretty-fast/HEAD/bin/pretty-fast -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pretty-fast/HEAD/package.json -------------------------------------------------------------------------------- /pretty-fast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pretty-fast/HEAD/pretty-fast.js -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pretty-fast/HEAD/test.js --------------------------------------------------------------------------------