├── .gitignore ├── .travis.yml ├── cantinflas.png ├── example.js ├── license ├── package.json ├── readme.md ├── src └── index.js └── test └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terkelg/cantinflas/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terkelg/cantinflas/HEAD/.travis.yml -------------------------------------------------------------------------------- /cantinflas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terkelg/cantinflas/HEAD/cantinflas.png -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terkelg/cantinflas/HEAD/example.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terkelg/cantinflas/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terkelg/cantinflas/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terkelg/cantinflas/HEAD/readme.md -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terkelg/cantinflas/HEAD/src/index.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terkelg/cantinflas/HEAD/test/index.js --------------------------------------------------------------------------------