├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── PUBLISHING.md ├── README.md ├── package.json ├── src └── index.ts ├── test ├── requestAnimationFrame.test.ts └── setTimeout.test.ts ├── tsconfig.json ├── typings ├── lib_ext.d.ts ├── tape │ └── tape.d.ts └── tsd.d.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrelm/frame-throttle/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrelm/frame-throttle/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrelm/frame-throttle/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrelm/frame-throttle/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrelm/frame-throttle/HEAD/LICENSE -------------------------------------------------------------------------------- /PUBLISHING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrelm/frame-throttle/HEAD/PUBLISHING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrelm/frame-throttle/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrelm/frame-throttle/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrelm/frame-throttle/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/requestAnimationFrame.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrelm/frame-throttle/HEAD/test/requestAnimationFrame.test.ts -------------------------------------------------------------------------------- /test/setTimeout.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrelm/frame-throttle/HEAD/test/setTimeout.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrelm/frame-throttle/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings/lib_ext.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrelm/frame-throttle/HEAD/typings/lib_ext.d.ts -------------------------------------------------------------------------------- /typings/tape/tape.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrelm/frame-throttle/HEAD/typings/tape/tape.d.ts -------------------------------------------------------------------------------- /typings/tsd.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrelm/frame-throttle/HEAD/typings/tsd.d.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrelm/frame-throttle/HEAD/yarn.lock --------------------------------------------------------------------------------