UNPKG

lzma-purejs-requirejs

Version:

pure JavaScript LZMA de/compression, for node.js, volo, and the browser.

12 lines (10 loc) 275 B
'use strict'; const freeze = require('./freeze'); const BinTree = require('./LZ/BinTree'); const InWindow = require('./LZ/InWindow'); const OutWindow = require('./LZ/OutWindow'); module.exports = freeze({ BinTree: BinTree, InWindow: InWindow, OutWindow: OutWindow });