blob: 6f8579b324b03cc17ceec2c3613ae8880607666c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
'use strict';
require('../common');
const runBenchmark = require('../common/benchmark');
runBenchmark('zlib',
[
'algorithm=brotli',
'method=deflate',
'n=1',
'options=true',
'type=Deflate',
'inputLen=1024',
'duration=0.001'
],
{
'NODEJS_BENCHMARK_ZERO_ALLOWED': 1
});
|