From 34189563496a7d418382ac402241d4970b32b78b Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Thu, 31 Jan 2019 21:05:17 -0800 Subject: benchmark: use consistent coding style in assert/* Files in benchmark/assert/* were sometimes using trailing commas for multi-line objects and sometimes not, mixing the approaches in the same file sometimes. Standardize these files to always use trailing commas in multi-line objects. Additionally, remove some unnecessary line-wrapping (so that there are fewer multi-line objects). PR-URL: https://github.com/nodejs/node/pull/25865 Reviewed-By: Richard Lau Reviewed-By: Vse Mozhet Byt --- benchmark/assert/deepequal-typedarrays.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'benchmark/assert/deepequal-typedarrays.js') diff --git a/benchmark/assert/deepequal-typedarrays.js b/benchmark/assert/deepequal-typedarrays.js index 9f9c68a673..9acf83711e 100644 --- a/benchmark/assert/deepequal-typedarrays.js +++ b/benchmark/assert/deepequal-typedarrays.js @@ -16,7 +16,7 @@ const bench = common.createBenchmark(main, { 'deepEqual', 'notDeepEqual', ], - len: [1e2, 5e3] + len: [1e2, 5e3], }); function main({ type, n, len, method, strict }) { -- cgit v1.2.3