├── .gitignore ├── .travis.yml ├── index.js ├── package.json ├── readme.md └── test ├── fixtures ├── thumb.gif ├── thumb.jpg ├── thumb.png └── thumb.svg └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorjs/get-image-colors/HEAD/.travis.yml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorjs/get-image-colors/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorjs/get-image-colors/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorjs/get-image-colors/HEAD/readme.md -------------------------------------------------------------------------------- /test/fixtures/thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorjs/get-image-colors/HEAD/test/fixtures/thumb.gif -------------------------------------------------------------------------------- /test/fixtures/thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorjs/get-image-colors/HEAD/test/fixtures/thumb.jpg -------------------------------------------------------------------------------- /test/fixtures/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorjs/get-image-colors/HEAD/test/fixtures/thumb.png -------------------------------------------------------------------------------- /test/fixtures/thumb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorjs/get-image-colors/HEAD/test/fixtures/thumb.svg -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colorjs/get-image-colors/HEAD/test/index.js --------------------------------------------------------------------------------