From 22aa3d48997f1fc31e9c9cc08ec76a5436c93fe3 Mon Sep 17 00:00:00 2001 From: Vse Mozhet Byt Date: Mon, 17 Apr 2017 04:01:12 +0300 Subject: benchmark: reduce string concatenations PR-URL: https://github.com/nodejs/node/pull/12455 Reviewed-By: Benjamin Gruenbaum Reviewed-By: James M Snell --- benchmark/url/legacy-vs-whatwg-url-get-prop.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'benchmark/url') diff --git a/benchmark/url/legacy-vs-whatwg-url-get-prop.js b/benchmark/url/legacy-vs-whatwg-url-get-prop.js index ffc8b4995df..733a05a1730 100644 --- a/benchmark/url/legacy-vs-whatwg-url-get-prop.js +++ b/benchmark/url/legacy-vs-whatwg-url-get-prop.js @@ -48,7 +48,7 @@ function useWHATWG(n, input) { var obj = new URL(input); var noDead = { protocol: obj.protocol, - auth: obj.username + ':' + obj.password, + auth: `${obj.username}:${obj.password}`, host: obj.host, hostname: obj.hostname, port: obj.port, @@ -59,7 +59,7 @@ function useWHATWG(n, input) { bench.start(); for (var i = 0; i < n; i += 1) { noDead.protocol = obj.protocol; - noDead.auth = obj.username + ':' + obj.password; + noDead.auth = `${obj.username}:${obj.password}`; noDead.host = obj.host; noDead.hostname = obj.hostname; noDead.port = obj.port; -- cgit v1.2.3