diff --git a/benchmark/common.js b/benchmark/common.js index d49aef106f1c11..ac98b667820288 100644 --- a/benchmark/common.js +++ b/benchmark/common.js @@ -262,4 +262,3 @@ exports.v8ForceOptimization = function(method, ...args) { method.apply(null, args); return eval('%GetOptimizationStatus(method)'); }; - diff --git a/benchmark/http/http_server_for_chunky_client.js b/benchmark/http/http_server_for_chunky_client.js index d85e15bcbed4e9..a0911b84ab811d 100644 --- a/benchmark/http/http_server_for_chunky_client.js +++ b/benchmark/http/http_server_for_chunky_client.js @@ -51,4 +51,3 @@ try { } catch (e) { throw new Error('error: ' + e); } - diff --git a/benchmark/idle_clients.js b/benchmark/idle_clients.js index d294e685224d8b..f011c21982759a 100644 --- a/benchmark/idle_clients.js +++ b/benchmark/idle_clients.js @@ -44,4 +44,3 @@ setInterval(function() { console.log('CLIENT %d errors: %d', process.pid, errors); } }, 1000); - diff --git a/test/parallel/test-readline-interface.js b/test/parallel/test-readline-interface.js index e5ab1415002b3e..df516ccc5c3e39 100644 --- a/test/parallel/test-readline-interface.js +++ b/test/parallel/test-readline-interface.js @@ -390,9 +390,9 @@ function isWarned(emitter) { assert.equal(readline.codePointAt('ABC', 0), 0x41); assert.equal(readline.codePointAt('あいう', 1), 0x3044); assert.equal(readline.codePointAt('\ud800\udc00', 0), // surrogate - 0x10000); + 0x10000); assert.equal(readline.codePointAt('\ud800\udc00A', 2), // surrogate - 0x41); + 0x41); assert.equal(readline.getStringWidth('abcde'), 5); assert.equal(readline.getStringWidth('古池や'), 6); assert.equal(readline.getStringWidth('ノード.js'), 9);