Skip to content

Commit 4f3b3dc

Browse files
committed
remove tags array comma
1 parent adabb8d commit 4f3b3dc

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

JetStreamDriver.js

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1747,14 +1747,14 @@ let BENCHMARKS = [
17471747
files: [
17481748
"./simple/doxbee-promise.js",
17491749
],
1750-
tags: ["Simple",],
1750+
tags: ["Simple"],
17511751
}),
17521752
new AsyncBenchmark({
17531753
name: "doxbee-async",
17541754
files: [
17551755
"./simple/doxbee-async.js",
17561756
],
1757-
tags: ["Simple",],
1757+
tags: ["Simple"],
17581758
}),
17591759
// SeaMonster
17601760
new DefaultBenchmark({
@@ -1826,7 +1826,7 @@ let BENCHMARKS = [
18261826
iterations: 4,
18271827
worstCaseCount: 1,
18281828
deterministicRandom: true,
1829-
tags: ["BigIntNoble",],
1829+
tags: ["BigIntNoble"],
18301830
}),
18311831
new AsyncBenchmark({
18321832
name: "bigint-noble-secp256k1",
@@ -1836,7 +1836,7 @@ let BENCHMARKS = [
18361836
"./bigint/noble-benchmark.js",
18371837
],
18381838
deterministicRandom: true,
1839-
tags: ["BigIntNoble",],
1839+
tags: ["BigIntNoble"],
18401840
}),
18411841
new AsyncBenchmark({
18421842
name: "bigint-noble-ed25519",
@@ -1847,7 +1847,7 @@ let BENCHMARKS = [
18471847
],
18481848
iterations: 30,
18491849
deterministicRandom: true,
1850-
tags: ["BigIntNoble",],
1850+
tags: ["BigIntNoble"],
18511851
}),
18521852
new DefaultBenchmark({
18531853
name: "bigint-paillier",
@@ -1859,7 +1859,7 @@ let BENCHMARKS = [
18591859
iterations: 10,
18601860
worstCaseCount: 2,
18611861
deterministicRandom: true,
1862-
tags: ["BigIntMisc",],
1862+
tags: ["BigIntMisc"],
18631863
}),
18641864
new DefaultBenchmark({
18651865
name: "bigint-bigdenary",
@@ -1869,7 +1869,7 @@ let BENCHMARKS = [
18691869
],
18701870
iterations: 160,
18711871
worstCaseCount: 16,
1872-
tags: ["BigIntMisc",],
1872+
tags: ["BigIntMisc"],
18731873
}),
18741874
// Proxy
18751875
new AsyncBenchmark({
@@ -1881,7 +1881,7 @@ let BENCHMARKS = [
18811881
],
18821882
iterations: defaultIterationCount * 3,
18831883
worstCaseCount: defaultWorstCaseCount * 3,
1884-
tags: ["Proxy",],
1884+
tags: ["Proxy"],
18851885
}),
18861886
new AsyncBenchmark({
18871887
name: "proxy-vue",
@@ -1890,22 +1890,22 @@ let BENCHMARKS = [
18901890
"./proxy/vue-bundle.js",
18911891
"./proxy/vue-benchmark.js",
18921892
],
1893-
tags: ["Proxy",],
1893+
tags: ["Proxy"]
18941894
}),
18951895
// Class fields
18961896
new DefaultBenchmark({
18971897
name: "raytrace-public-class-fields",
18981898
files: [
18991899
"./class-fields/raytrace-public-class-fields.js",
19001900
],
1901-
tags: ["ClassFields",],
1901+
tags: ["ClassFields"]
19021902
}),
19031903
new DefaultBenchmark({
19041904
name: "raytrace-private-class-fields",
19051905
files: [
19061906
"./class-fields/raytrace-private-class-fields.js",
19071907
],
1908-
tags: ["ClassFields",],
1908+
tags: ["ClassFields"]
19091909
}),
19101910
// Generators
19111911
new AsyncBenchmark({
@@ -1916,7 +1916,7 @@ let BENCHMARKS = [
19161916
iterations: 80,
19171917
worstCaseCount: 6,
19181918
deterministicRandom: true,
1919-
tags: ["Generators",],
1919+
tags: ["Generators"]
19201920
}),
19211921
new DefaultBenchmark({
19221922
name: "sync-fs",
@@ -1926,21 +1926,21 @@ let BENCHMARKS = [
19261926
iterations: 80,
19271927
worstCaseCount: 6,
19281928
deterministicRandom: true,
1929-
tags: ["Generators",],
1929+
tags: ["Generators"]
19301930
}),
19311931
new DefaultBenchmark({
19321932
name: "lazy-collections",
19331933
files: [
19341934
"./generators/lazy-collections.js",
19351935
],
1936-
tags: ["Generators",],
1936+
tags: ["Generators"]
19371937
}),
19381938
new DefaultBenchmark({
19391939
name: "js-tokens",
19401940
files: [
19411941
"./generators/js-tokens.js",
19421942
],
1943-
tags: ["Generators",],
1943+
tags: ["Generators"]
19441944
}),
19451945
// Wasm
19461946
new WasmEMCCBenchmark({

0 commit comments

Comments
 (0)