-
Notifications
You must be signed in to change notification settings - Fork 749
/
Copy pathinfo.js
106 lines (97 loc) · 2.85 KB
/
info.js
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
import Benchmark from "benchmark";
import Info from "../src/info.js";
import Locale from "../src/impl/locale.js";
function runWeekdaysSuite() {
return new Promise((resolve, reject) => {
const locale = Locale.create(null, null, null);
new Benchmark.Suite()
.add("Info.weekdays with existing locale", () => {
Info.weekdays("long", { locObj: locale });
})
.add("Info.weekdays", () => {
Info.weekdays("long");
})
.on("cycle", (event) => {
console.log(String(event.target));
})
.on("complete", function () {
console.log("Fastest is " + this.filter("fastest").map("name"));
resolve();
})
.on("error", function () {
reject(this.error);
})
.run();
});
}
function runWeekdaysFormatSuite() {
return new Promise((resolve, reject) => {
const locale = Locale.create(null, null, null);
new Benchmark.Suite()
.add("Info.weekdaysFormat with existing locale", () => {
Info.weekdaysFormat("long", { locObj: locale });
})
.add("Info.weekdaysFormat", () => {
Info.weekdaysFormat("long");
})
.on("cycle", (event) => {
console.log(String(event.target));
})
.on("complete", function () {
console.log("Fastest is " + this.filter("fastest").map("name"));
resolve();
})
.on("error", function () {
reject(this.error);
})
.run();
});
}
function runMonthsSuite() {
return new Promise((resolve, reject) => {
const locale = Locale.create(null, null, null);
new Benchmark.Suite()
.add("Info.months with existing locale", () => {
Info.months("long", { locObj: locale });
})
.add("Info.months", () => {
Info.months("long");
})
.on("cycle", (event) => {
console.log(String(event.target));
})
.on("complete", function () {
console.log("Fastest is " + this.filter("fastest").map("name"));
resolve();
})
.on("error", function () {
reject(this.error);
})
.run();
});
}
function runMonthsFormatSuite() {
return new Promise((resolve, reject) => {
const locale = Locale.create(null, null, null);
new Benchmark.Suite()
.add("Info.monthsFormat with existing locale", () => {
Info.monthsFormat("long", { locObj: locale });
})
.add("Info.monthsFormat", () => {
Info.monthsFormat("long");
})
.on("cycle", (event) => {
console.log(String(event.target));
})
.on("complete", function () {
console.log("Fastest is " + this.filter("fastest").map("name"));
resolve();
})
.on("error", function () {
reject(this.error);
})
.run();
});
}
const allSuites = [runMonthsSuite, runMonthsFormatSuite, runWeekdaysSuite, runWeekdaysFormatSuite];
export default allSuites;