├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── jest.config.js ├── package.json └── src └── Timer ├── constants.js ├── fakeTimers.test.js ├── index.js └── realTimers.test.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /package-lock.json 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvgs/timercore/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvgs/timercore/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvgs/timercore/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = {testEnvironment: 'node'} 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvgs/timercore/HEAD/package.json -------------------------------------------------------------------------------- /src/Timer/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvgs/timercore/HEAD/src/Timer/constants.js -------------------------------------------------------------------------------- /src/Timer/fakeTimers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvgs/timercore/HEAD/src/Timer/fakeTimers.test.js -------------------------------------------------------------------------------- /src/Timer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvgs/timercore/HEAD/src/Timer/index.js -------------------------------------------------------------------------------- /src/Timer/realTimers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvgs/timercore/HEAD/src/Timer/realTimers.test.js --------------------------------------------------------------------------------