From 7701d13f4bc36a245b3a4facc15ca9494190210b Mon Sep 17 00:00:00 2001 From: Vitaly Puzrin Date: Wed, 12 Mar 2014 01:10:54 +0400 Subject: [PATCH] Added pako inflate benchmarks --- .../implementations/inflate-pako-untyped/index.js | 11 +++++++++++ benchmark/implementations/inflate-pako/index.js | 8 ++++++++ 2 files changed, 19 insertions(+) create mode 100644 benchmark/implementations/inflate-pako-untyped/index.js create mode 100644 benchmark/implementations/inflate-pako/index.js diff --git a/benchmark/implementations/inflate-pako-untyped/index.js b/benchmark/implementations/inflate-pako-untyped/index.js new file mode 100644 index 0000000..6d5eb5f --- /dev/null +++ b/benchmark/implementations/inflate-pako-untyped/index.js @@ -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; +} diff --git a/benchmark/implementations/inflate-pako/index.js b/benchmark/implementations/inflate-pako/index.js new file mode 100644 index 0000000..ca8e2f8 --- /dev/null +++ b/benchmark/implementations/inflate-pako/index.js @@ -0,0 +1,8 @@ +'use strict' + +var pako = require('../../../index.js'); + +exports.run = function(data) { + return pako.inflate(data.deflateTyped, { + }); +}