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
368 B
14 lines
368 B
'use strict';
|
|
|
|
var GenericWorker = require("./stream/GenericWorker");
|
|
|
|
exports.STORE = {
|
|
magic: "\x00\x00",
|
|
compressWorker : function (compressionOptions) {
|
|
return new GenericWorker("STORE compression");
|
|
},
|
|
uncompressWorker : function () {
|
|
return new GenericWorker("STORE decompression");
|
|
}
|
|
};
|
|
exports.DEFLATE = require('./flate');
|
|
|