mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-07 04:10:58 +01:00
8 lines
217 B
JavaScript
8 lines
217 B
JavaScript
'use strict'
|
|
|
|
var inflateSync = require('./node-zlib').inflateSync;
|
|
|
|
exports.run = function(data, level) {
|
|
// Compression levels not supported. Use unknown defaults always
|
|
return inflateSync(data.deflateTyped);
|
|
}
|