├── .gitignore ├── LICENSE ├── README.md ├── assets ├── 01-basic.gif ├── 02-contains.gif ├── 03-preview.gif ├── 04-save.gif └── 05-remove.gif ├── lib ├── logger.js ├── parser.js └── segmenter.js ├── magicat.js ├── package.json └── sample-images ├── cow.jpg └── sheep.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CODAIT/magicat/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CODAIT/magicat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CODAIT/magicat/HEAD/README.md -------------------------------------------------------------------------------- /assets/01-basic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CODAIT/magicat/HEAD/assets/01-basic.gif -------------------------------------------------------------------------------- /assets/02-contains.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CODAIT/magicat/HEAD/assets/02-contains.gif -------------------------------------------------------------------------------- /assets/03-preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CODAIT/magicat/HEAD/assets/03-preview.gif -------------------------------------------------------------------------------- /assets/04-save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CODAIT/magicat/HEAD/assets/04-save.gif -------------------------------------------------------------------------------- /assets/05-remove.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CODAIT/magicat/HEAD/assets/05-remove.gif -------------------------------------------------------------------------------- /lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CODAIT/magicat/HEAD/lib/logger.js -------------------------------------------------------------------------------- /lib/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CODAIT/magicat/HEAD/lib/parser.js -------------------------------------------------------------------------------- /lib/segmenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CODAIT/magicat/HEAD/lib/segmenter.js -------------------------------------------------------------------------------- /magicat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CODAIT/magicat/HEAD/magicat.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CODAIT/magicat/HEAD/package.json -------------------------------------------------------------------------------- /sample-images/cow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CODAIT/magicat/HEAD/sample-images/cow.jpg -------------------------------------------------------------------------------- /sample-images/sheep.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CODAIT/magicat/HEAD/sample-images/sheep.jpg --------------------------------------------------------------------------------