├── .gitignore ├── README.md ├── ReactRAFBatching.js ├── ReactRAFBatchingStrategy.js ├── package.json └── requestAnimationFrame.js /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petehunt/react-raf-batching/HEAD/README.md -------------------------------------------------------------------------------- /ReactRAFBatching.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petehunt/react-raf-batching/HEAD/ReactRAFBatching.js -------------------------------------------------------------------------------- /ReactRAFBatchingStrategy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petehunt/react-raf-batching/HEAD/ReactRAFBatchingStrategy.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petehunt/react-raf-batching/HEAD/package.json -------------------------------------------------------------------------------- /requestAnimationFrame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petehunt/react-raf-batching/HEAD/requestAnimationFrame.js --------------------------------------------------------------------------------