From b7eb63c8be719a43c9aba48484648f375e376c53 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Mon, 12 Jan 2015 10:00:41 -0800 Subject: html.js, xml.js: avoid using concat. --- js/lib/html.js | 2 +- js/lib/xml.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'js/lib') diff --git a/js/lib/html.js b/js/lib/html.js index db87c22..e361fe1 100644 --- a/js/lib/html.js +++ b/js/lib/html.js @@ -9,7 +9,7 @@ var tag = function(name, attrs, selfclosing) { var i = 0; var attrib; while ((attrib = attrs[i]) !== undefined) { - result = result.concat(' ', attrib[0], '="', attrib[1], '"'); + result += ' ' + attrib[0] + '="' + attrib[1] + '"'; i++; } } diff --git a/js/lib/xml.js b/js/lib/xml.js index e8fba6a..e867fdc 100644 --- a/js/lib/xml.js +++ b/js/lib/xml.js @@ -9,7 +9,7 @@ var tag = function(name, attrs, selfclosing) { var i = 0; var attrib; while ((attrib = attrs[i]) !== undefined) { - result = result.concat(' ', attrib[0], '="', attrib[1], '"'); + result += ' ' + attrib[0] + '="' + attrib[1] + '"'; i++; } } -- cgit v1.2.3