├── .babelrc ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── karma.conf.js ├── package.json └── test ├── bdd.js ├── int.js └── unit.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrusavin/exectimer/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrusavin/exectimer/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrusavin/exectimer/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrusavin/exectimer/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | .idea 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrusavin/exectimer/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrusavin/exectimer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrusavin/exectimer/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrusavin/exectimer/HEAD/index.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrusavin/exectimer/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrusavin/exectimer/HEAD/package.json -------------------------------------------------------------------------------- /test/bdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrusavin/exectimer/HEAD/test/bdd.js -------------------------------------------------------------------------------- /test/int.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrusavin/exectimer/HEAD/test/int.js -------------------------------------------------------------------------------- /test/unit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrusavin/exectimer/HEAD/test/unit.js --------------------------------------------------------------------------------