mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-06 03:41:03 +01:00
33 lines
No EOL
401 B
JavaScript
33 lines
No EOL
401 B
JavaScript
var z_inflate = require('zlib/inflate.js');
|
|
|
|
|
|
var Inflate = function(options) {
|
|
|
|
}
|
|
|
|
|
|
Inflate.prototype.push = function(input) {
|
|
|
|
}
|
|
|
|
Inflate.prototype.finish = function() {
|
|
|
|
}
|
|
|
|
Inflate.prototype.onData = function(output) {
|
|
|
|
}
|
|
|
|
Inflate.prototype.onEnd = function(error) {
|
|
|
|
}
|
|
|
|
exports.Inflate = Inflate;
|
|
|
|
exports.inflate = function(input, options) {
|
|
|
|
}
|
|
|
|
exports.inflateRaw = function(input, options) {
|
|
|
|
} |