Added profiling test file

This commit is contained in:
Vitaly Puzrin 2014-02-14 09:06:22 +04:00
parent be9d4902bd
commit c19d9ce8aa

11
benchmark/profile.js Normal file
View file

@ -0,0 +1,11 @@
'use strict';
var fs = require('fs');
var pako = require('../index.js');
var data = new Uint8Array(fs.readFileSync(__dirname +'/samples/lorem_1mb.txt'));
for (var i=0; i<50; i++) {
pako.deflate(data, { level: 0 });
}