-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbenchmark.ts
65 lines (60 loc) · 1.38 KB
/
benchmark.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
var Benchmark = require("benchmark");
var suiteArguments = new Benchmark.Suite({
});
// add tests
suiteArguments
.add("[ARGUMENTS] - Array.from Strat", function() {
function is(types) {
let arr = types;
if (!Array.isArray(types)) {
arr = Array.from(arguments);
}
return;
}
is("application/json");
return;
})
.add("[ARGUMENTS] - Spread Strat", function() {
function is(types) {
let arr = types;
if (!Array.isArray(types)) {
arr = [...arguments];
}
return;
}
is("application/json");
return;
})
.add("[ARGUMENTS] - Clone Strat", function() {
function is(types) {
let arr = types;
if (!Array.isArray(types)) {
arr = new Array(arguments.length);
for (var i = 0; i < arr.length; i++) {
arr[i] = arguments[i];
}
}
return;
}
is("application/json");
return;
})
.add("[ARGUMENTS] - slice.apply", function() {
function is(types) {
let arr = types;
if (!Array.isArray(types)) {
arr = [].slice.apply(arguments);
}
return;
}
is("application/json");
return;
})
// add listeners
.on("cycle", function(event) {
console.log(String(event.target));
})
.on("complete", function() {
console.log("Fastest is " + this.filter("fastest").map("name"));
})
.run({ async: false });