├── .gitignore ├── .travis.yml ├── README.md ├── index.js ├── lib ├── compress.js └── staticGzip.js ├── package.json └── test ├── fixtures ├── index_test │ └── index.html ├── js │ └── nestedTest.js ├── space the final frontier │ └── tomg.co.png ├── test.js ├── test.js.gzip ├── tomg.co.png ├── user.gzip ├── user.json ├── utf8.gz ├── utf8.txt └── utf8.txt.gz ├── prefexTest.js └── staticGzipTest.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomgco/gzippo/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomgco/gzippo/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomgco/gzippo/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomgco/gzippo/HEAD/index.js -------------------------------------------------------------------------------- /lib/compress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomgco/gzippo/HEAD/lib/compress.js -------------------------------------------------------------------------------- /lib/staticGzip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomgco/gzippo/HEAD/lib/staticGzip.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomgco/gzippo/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/index_test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomgco/gzippo/HEAD/test/fixtures/index_test/index.html -------------------------------------------------------------------------------- /test/fixtures/js/nestedTest.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/space the final frontier/tomg.co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomgco/gzippo/HEAD/test/fixtures/space the final frontier/tomg.co.png -------------------------------------------------------------------------------- /test/fixtures/test.js: -------------------------------------------------------------------------------- 1 | alert("hello"); -------------------------------------------------------------------------------- /test/fixtures/test.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomgco/gzippo/HEAD/test/fixtures/test.js.gzip -------------------------------------------------------------------------------- /test/fixtures/tomg.co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomgco/gzippo/HEAD/test/fixtures/tomg.co.png -------------------------------------------------------------------------------- /test/fixtures/user.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomgco/gzippo/HEAD/test/fixtures/user.gzip -------------------------------------------------------------------------------- /test/fixtures/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomgco/gzippo/HEAD/test/fixtures/user.json -------------------------------------------------------------------------------- /test/fixtures/utf8.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/utf8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomgco/gzippo/HEAD/test/fixtures/utf8.txt -------------------------------------------------------------------------------- /test/fixtures/utf8.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomgco/gzippo/HEAD/test/fixtures/utf8.txt.gz -------------------------------------------------------------------------------- /test/prefexTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomgco/gzippo/HEAD/test/prefexTest.js -------------------------------------------------------------------------------- /test/staticGzipTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomgco/gzippo/HEAD/test/staticGzipTest.js --------------------------------------------------------------------------------