├── .editorconfig ├── .gitignore ├── README.md ├── index.js ├── package.json └── test └── spec └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjpeterson/timeout-raf/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjpeterson/timeout-raf/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjpeterson/timeout-raf/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjpeterson/timeout-raf/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjpeterson/timeout-raf/HEAD/package.json -------------------------------------------------------------------------------- /test/spec/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerjpeterson/timeout-raf/HEAD/test/spec/test.js --------------------------------------------------------------------------------