mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-05 11:20:58 +01:00
Added pako inflate benchmarks
This commit is contained in:
parent
5f9b67413b
commit
7701d13f4b
2 changed files with 19 additions and 0 deletions
11
benchmark/implementations/inflate-pako-untyped/index.js
Normal file
11
benchmark/implementations/inflate-pako-untyped/index.js
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
'use strict'
|
||||||
|
|
||||||
|
var pako = require('../../../');
|
||||||
|
var utils = require('../../../lib/zlib/utils');
|
||||||
|
|
||||||
|
exports.run = function(data, level) {
|
||||||
|
utils.forceUntyped = true;
|
||||||
|
pako.inflate(data.deflateTyped, {
|
||||||
|
});
|
||||||
|
utils.forceUntyped = false;
|
||||||
|
}
|
8
benchmark/implementations/inflate-pako/index.js
Normal file
8
benchmark/implementations/inflate-pako/index.js
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
'use strict'
|
||||||
|
|
||||||
|
var pako = require('../../../index.js');
|
||||||
|
|
||||||
|
exports.run = function(data) {
|
||||||
|
return pako.inflate(data.deflateTyped, {
|
||||||
|
});
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue