From 5b63d48e9ea93e5fe1265e9e0d43574b6b0d807a Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Fri, 8 Jul 2016 17:17:47 -0700 Subject: lib,benchmark,test: implement consistent braces MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This change is in preparation for lint-enforced brace style. PR-URL: https://github.com/nodejs/node/pull/7630 Reviewed-By: Brian White Reviewed-By: Michaƫl Zasso Reviewed-By: Ben Noordhuis Reviewed-By: Roman Reiss Reviewed-By: Trevor Norris Reviewed-By: Rod Vagg --- benchmark/child_process/child-process-read-ipc.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'benchmark/child_process') diff --git a/benchmark/child_process/child-process-read-ipc.js b/benchmark/child_process/child-process-read-ipc.js index 82e833980f..28f2b6f927 100644 --- a/benchmark/child_process/child-process-read-ipc.js +++ b/benchmark/child_process/child-process-read-ipc.js @@ -1,6 +1,5 @@ 'use strict'; -if (process.argv[2] === 'child') -{ +if (process.argv[2] === 'child') { const len = +process.argv[3]; const msg = `"${'.'.repeat(len)}"`; while (true) { -- cgit v1.2.3