├── .gitignore ├── LICENSE ├── index.js ├── package.json ├── readme.md └── test ├── index.js └── lorem.txt /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | coverage/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foliojs/tiny-inflate/HEAD/LICENSE -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foliojs/tiny-inflate/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foliojs/tiny-inflate/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foliojs/tiny-inflate/HEAD/readme.md -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foliojs/tiny-inflate/HEAD/test/index.js -------------------------------------------------------------------------------- /test/lorem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foliojs/tiny-inflate/HEAD/test/lorem.txt --------------------------------------------------------------------------------