├── LICENSE.txt ├── README.md ├── benchmarks ├── README.md ├── bench.js ├── index.html ├── node-lz4 │ └── lz4.js ├── node-lzma │ ├── lzma.js │ └── lzma_worker.js ├── pako │ └── inflate.js └── vendor │ ├── benchmark.js │ ├── lodash.js │ └── platform.js ├── data ├── hello-world.txt ├── hello-world.txt.lzma ├── stars.col.db ├── stars.col.db.gz ├── stars.col.db.lz4 ├── stars.col.db.lzma ├── stars.col.db.plzma ├── stars.names.json ├── stars.names.json.gz ├── stars.names.json.lz4 ├── stars.names.json.lzma ├── stars.names.json.plzma ├── stars.pos.db ├── stars.pos.db.gz ├── stars.pos.db.lz4 ├── stars.pos.db.lzma ├── stars.pos.db.plzma ├── unicode.txt └── unicode.txt.lzma ├── docs ├── lzma.shim.md ├── lzmap.md ├── pwlzma.md └── wlzma.md ├── examples ├── demo.html ├── libs │ ├── digest.md5.js │ └── utf8.decode.js ├── lzma.html ├── lzmap.html ├── pwlzma.html ├── unicode.html └── wlzma.html ├── scripts └── plzma.pl └── src ├── lzma.js ├── lzma.shim.js ├── lzmap.js ├── pwlzma.js ├── wlzma.js └── wlzma.wrk.js /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/benchmarks/README.md -------------------------------------------------------------------------------- /benchmarks/bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/benchmarks/bench.js -------------------------------------------------------------------------------- /benchmarks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/benchmarks/index.html -------------------------------------------------------------------------------- /benchmarks/node-lz4/lz4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/benchmarks/node-lz4/lz4.js -------------------------------------------------------------------------------- /benchmarks/node-lzma/lzma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/benchmarks/node-lzma/lzma.js -------------------------------------------------------------------------------- /benchmarks/node-lzma/lzma_worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/benchmarks/node-lzma/lzma_worker.js -------------------------------------------------------------------------------- /benchmarks/pako/inflate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/benchmarks/pako/inflate.js -------------------------------------------------------------------------------- /benchmarks/vendor/benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/benchmarks/vendor/benchmark.js -------------------------------------------------------------------------------- /benchmarks/vendor/lodash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/benchmarks/vendor/lodash.js -------------------------------------------------------------------------------- /benchmarks/vendor/platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/benchmarks/vendor/platform.js -------------------------------------------------------------------------------- /data/hello-world.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/data/hello-world.txt -------------------------------------------------------------------------------- /data/hello-world.txt.lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/data/hello-world.txt.lzma -------------------------------------------------------------------------------- /data/stars.col.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/data/stars.col.db -------------------------------------------------------------------------------- /data/stars.col.db.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/data/stars.col.db.gz -------------------------------------------------------------------------------- /data/stars.col.db.lz4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/data/stars.col.db.lz4 -------------------------------------------------------------------------------- /data/stars.col.db.lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/data/stars.col.db.lzma -------------------------------------------------------------------------------- /data/stars.col.db.plzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/data/stars.col.db.plzma -------------------------------------------------------------------------------- /data/stars.names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/data/stars.names.json -------------------------------------------------------------------------------- /data/stars.names.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/data/stars.names.json.gz -------------------------------------------------------------------------------- /data/stars.names.json.lz4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/data/stars.names.json.lz4 -------------------------------------------------------------------------------- /data/stars.names.json.lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/data/stars.names.json.lzma -------------------------------------------------------------------------------- /data/stars.names.json.plzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/data/stars.names.json.plzma -------------------------------------------------------------------------------- /data/stars.pos.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/data/stars.pos.db -------------------------------------------------------------------------------- /data/stars.pos.db.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/data/stars.pos.db.gz -------------------------------------------------------------------------------- /data/stars.pos.db.lz4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/data/stars.pos.db.lz4 -------------------------------------------------------------------------------- /data/stars.pos.db.lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/data/stars.pos.db.lzma -------------------------------------------------------------------------------- /data/stars.pos.db.plzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/data/stars.pos.db.plzma -------------------------------------------------------------------------------- /data/unicode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/data/unicode.txt -------------------------------------------------------------------------------- /data/unicode.txt.lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/data/unicode.txt.lzma -------------------------------------------------------------------------------- /docs/lzma.shim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/docs/lzma.shim.md -------------------------------------------------------------------------------- /docs/lzmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/docs/lzmap.md -------------------------------------------------------------------------------- /docs/pwlzma.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/docs/pwlzma.md -------------------------------------------------------------------------------- /docs/wlzma.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/docs/wlzma.md -------------------------------------------------------------------------------- /examples/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/examples/demo.html -------------------------------------------------------------------------------- /examples/libs/digest.md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/examples/libs/digest.md5.js -------------------------------------------------------------------------------- /examples/libs/utf8.decode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/examples/libs/utf8.decode.js -------------------------------------------------------------------------------- /examples/lzma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/examples/lzma.html -------------------------------------------------------------------------------- /examples/lzmap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/examples/lzmap.html -------------------------------------------------------------------------------- /examples/pwlzma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/examples/pwlzma.html -------------------------------------------------------------------------------- /examples/unicode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/examples/unicode.html -------------------------------------------------------------------------------- /examples/wlzma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/examples/wlzma.html -------------------------------------------------------------------------------- /scripts/plzma.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/scripts/plzma.pl -------------------------------------------------------------------------------- /src/lzma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/src/lzma.js -------------------------------------------------------------------------------- /src/lzma.shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/src/lzma.shim.js -------------------------------------------------------------------------------- /src/lzmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/src/lzmap.js -------------------------------------------------------------------------------- /src/pwlzma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/src/pwlzma.js -------------------------------------------------------------------------------- /src/wlzma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/src/wlzma.js -------------------------------------------------------------------------------- /src/wlzma.wrk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcmellado/js-lzma/HEAD/src/wlzma.wrk.js --------------------------------------------------------------------------------