mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-10 22:00:58 +01:00
7 lines
118 B
JavaScript
7 lines
118 B
JavaScript
'use strict';
|
|
|
|
var zlib = require('zlib');
|
|
|
|
exports.run = function (data) {
|
|
zlib.inflateSync(data.deflateTyped);
|
|
};
|