├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── bench.js ├── package.json ├── retimer.js ├── test.js ├── time-browser.js ├── time.js ├── timers-browser.js ├── timers.js ├── types.d.ts └── types.test-d.ts /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/retimer/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/retimer/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/retimer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/retimer/HEAD/README.md -------------------------------------------------------------------------------- /bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/retimer/HEAD/bench.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/retimer/HEAD/package.json -------------------------------------------------------------------------------- /retimer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/retimer/HEAD/retimer.js -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/retimer/HEAD/test.js -------------------------------------------------------------------------------- /time-browser.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = function getTime () { 4 | return Date.now() 5 | } 6 | -------------------------------------------------------------------------------- /time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/retimer/HEAD/time.js -------------------------------------------------------------------------------- /timers-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/retimer/HEAD/timers-browser.js -------------------------------------------------------------------------------- /timers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/retimer/HEAD/timers.js -------------------------------------------------------------------------------- /types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/retimer/HEAD/types.d.ts -------------------------------------------------------------------------------- /types.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/retimer/HEAD/types.test-d.ts --------------------------------------------------------------------------------