├── .gitignore ├── .npmignore ├── README.md ├── package.json ├── src ├── index.coffee ├── polyfill.coffee └── result.coffee └── test └── profile_test.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | lib 2 | node_modules 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/async-profile/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/async-profile/HEAD/package.json -------------------------------------------------------------------------------- /src/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/async-profile/HEAD/src/index.coffee -------------------------------------------------------------------------------- /src/polyfill.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/async-profile/HEAD/src/polyfill.coffee -------------------------------------------------------------------------------- /src/result.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/async-profile/HEAD/src/result.coffee -------------------------------------------------------------------------------- /test/profile_test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/async-profile/HEAD/test/profile_test.coffee --------------------------------------------------------------------------------