1
0
Fork 0
mirror of https://github.com/0x5eal/rbxts-pako.git synced 2025-04-14 08:55:36 +01:00
rbxts-pako/benchmark/implementations/inflate-zlib/index.js
2020-11-07 13:33:01 +03:00

7 lines
119 B
JavaScript

'use strict';
var zlib = require('zlib');
exports.run = function (data) {
zlib.inflateSync(data.deflateBuffer);
};