├── .gitignore ├── .jshintignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── package.json └── test ├── minimal.js ├── precise.js ├── smoke.js └── verbose.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robrich/pretty-hrtime/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- 1 | node_modules/** 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robrich/pretty-hrtime/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robrich/pretty-hrtime/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robrich/pretty-hrtime/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robrich/pretty-hrtime/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robrich/pretty-hrtime/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robrich/pretty-hrtime/HEAD/package.json -------------------------------------------------------------------------------- /test/minimal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robrich/pretty-hrtime/HEAD/test/minimal.js -------------------------------------------------------------------------------- /test/precise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robrich/pretty-hrtime/HEAD/test/precise.js -------------------------------------------------------------------------------- /test/smoke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robrich/pretty-hrtime/HEAD/test/smoke.js -------------------------------------------------------------------------------- /test/verbose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robrich/pretty-hrtime/HEAD/test/verbose.js --------------------------------------------------------------------------------