mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
540 B
25 lines
540 B
7 years ago
|
'use strict';
|
||
|
|
||
|
require('../common');
|
||
|
|
||
7 years ago
|
const runBenchmark = require('../common/benchmark');
|
||
7 years ago
|
|
||
7 years ago
|
runBenchmark('buffers',
|
||
|
[
|
||
|
'aligned=true',
|
||
|
'args=1',
|
||
|
'encoding=utf8',
|
||
|
'len=2',
|
||
|
'method=',
|
||
|
'n=1',
|
||
|
'noAssert=true',
|
||
|
'pieces=1',
|
||
|
'pieceSize=1',
|
||
|
'search=@',
|
||
|
'size=1',
|
||
|
'source=array',
|
||
|
'type=',
|
||
|
'withTotalLength=0'
|
||
7 years ago
|
|
||
7 years ago
|
]);
|