You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
350 B
14 lines
350 B
"use strict";
|
|
|
|
var GenericWorker = require("./stream/GenericWorker");
|
|
|
|
exports.STORE = {
|
|
magic: "\x00\x00",
|
|
compressWorker : function () {
|
|
return new GenericWorker("STORE compression");
|
|
},
|
|
uncompressWorker : function () {
|
|
return new GenericWorker("STORE decompression");
|
|
}
|
|
};
|
|
exports.DEFLATE = require("./flate");
|
|
|