├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── lib └── nanotimer.js ├── package.json └── test ├── nanotimer_0_2_6_test_partial.png ├── nanotimer_deferred.png ├── nanotimer_non_deferred.png └── test-nanotimer.js /.gitignore: -------------------------------------------------------------------------------- 1 | .settings 2 | .project 3 | node_modules 4 | misc 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krb686/nanotimer/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krb686/nanotimer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krb686/nanotimer/HEAD/README.md -------------------------------------------------------------------------------- /lib/nanotimer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krb686/nanotimer/HEAD/lib/nanotimer.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krb686/nanotimer/HEAD/package.json -------------------------------------------------------------------------------- /test/nanotimer_0_2_6_test_partial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krb686/nanotimer/HEAD/test/nanotimer_0_2_6_test_partial.png -------------------------------------------------------------------------------- /test/nanotimer_deferred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krb686/nanotimer/HEAD/test/nanotimer_deferred.png -------------------------------------------------------------------------------- /test/nanotimer_non_deferred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krb686/nanotimer/HEAD/test/nanotimer_non_deferred.png -------------------------------------------------------------------------------- /test/test-nanotimer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krb686/nanotimer/HEAD/test/test-nanotimer.js --------------------------------------------------------------------------------