mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-04 19:01:00 +01:00
13 lines
346 B
JavaScript
13 lines
346 B
JavaScript
'use strict';
|
|
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
const pako = require('../');
|
|
|
|
const data = new Uint8Array(fs.readFileSync(path.join(__dirname, '/samples/lorem_1mb.txt')));
|
|
|
|
const deflated = pako.deflate(data, { level: 6/*, to: 'string'*/ });
|
|
|
|
for (let i = 0; i < 200; i++) {
|
|
pako.inflate(deflated, { to: 'string' });
|
|
}
|