├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── cjs ├── index.js └── package.json ├── esm ├── .eslintrc └── index.js ├── index.js ├── min.js ├── package.json ├── rollup.config.js └── test ├── .eslintrc ├── context.html ├── effect.html ├── generic.html ├── index.js ├── multifx.html ├── race.html ├── runner.js ├── state.html ├── state.js ├── update.js ├── use-raf.html ├── use-state.html └── use-update.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .nyc_output/ 3 | node_modules/ 4 | coverage/ 5 | package-lock.json 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/augmentor/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/augmentor/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/augmentor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/augmentor/HEAD/README.md -------------------------------------------------------------------------------- /cjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/augmentor/HEAD/cjs/index.js -------------------------------------------------------------------------------- /cjs/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} -------------------------------------------------------------------------------- /esm/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/augmentor/HEAD/esm/.eslintrc -------------------------------------------------------------------------------- /esm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/augmentor/HEAD/esm/index.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/augmentor/HEAD/index.js -------------------------------------------------------------------------------- /min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/augmentor/HEAD/min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/augmentor/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/augmentor/HEAD/rollup.config.js -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/augmentor/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/context.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/augmentor/HEAD/test/context.html -------------------------------------------------------------------------------- /test/effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/augmentor/HEAD/test/effect.html -------------------------------------------------------------------------------- /test/generic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/augmentor/HEAD/test/generic.html -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/augmentor/HEAD/test/index.js -------------------------------------------------------------------------------- /test/multifx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/augmentor/HEAD/test/multifx.html -------------------------------------------------------------------------------- /test/race.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/augmentor/HEAD/test/race.html -------------------------------------------------------------------------------- /test/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/augmentor/HEAD/test/runner.js -------------------------------------------------------------------------------- /test/state.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/augmentor/HEAD/test/state.html -------------------------------------------------------------------------------- /test/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/augmentor/HEAD/test/state.js -------------------------------------------------------------------------------- /test/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/augmentor/HEAD/test/update.js -------------------------------------------------------------------------------- /test/use-raf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/augmentor/HEAD/test/use-raf.html -------------------------------------------------------------------------------- /test/use-state.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/augmentor/HEAD/test/use-state.html -------------------------------------------------------------------------------- /test/use-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/augmentor/HEAD/test/use-update.js --------------------------------------------------------------------------------