├── .editorconfig ├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── index.js ├── index.test.js ├── media ├── bubbles.gif ├── example-with-coalescing.png ├── example-without-coalescing.png ├── ippo.gif └── kitten.gif ├── package.json ├── readme.md └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/gif-extract-frames/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/gif-extract-frames/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/gif-extract-frames/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | media 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/gif-extract-frames/HEAD/.travis.yml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/gif-extract-frames/HEAD/index.js -------------------------------------------------------------------------------- /index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/gif-extract-frames/HEAD/index.test.js -------------------------------------------------------------------------------- /media/bubbles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/gif-extract-frames/HEAD/media/bubbles.gif -------------------------------------------------------------------------------- /media/example-with-coalescing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/gif-extract-frames/HEAD/media/example-with-coalescing.png -------------------------------------------------------------------------------- /media/example-without-coalescing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/gif-extract-frames/HEAD/media/example-without-coalescing.png -------------------------------------------------------------------------------- /media/ippo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/gif-extract-frames/HEAD/media/ippo.gif -------------------------------------------------------------------------------- /media/kitten.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/gif-extract-frames/HEAD/media/kitten.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/gif-extract-frames/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/gif-extract-frames/HEAD/readme.md -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/gif-extract-frames/HEAD/yarn.lock --------------------------------------------------------------------------------