mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-14 08:55:36 +01:00
7 lines
119 B
JavaScript
7 lines
119 B
JavaScript
'use strict';
|
|
|
|
var zlib = require('zlib');
|
|
|
|
exports.run = function (data) {
|
|
zlib.inflateSync(data.deflateBuffer);
|
|
};
|