From c6d83e713df9864d704e2d12c3f62ff3be8535fd Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Sun, 11 Jan 2015 23:06:53 -0800 Subject: Factored out normalizeURI into a single function in common.js. This way we can change it without changing four separate places in the code. --- js/lib/common.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'js/lib/common.js') diff --git a/js/lib/common.js b/js/lib/common.js index e7cc13b..0104e68 100644 --- a/js/lib/common.js +++ b/js/lib/common.js @@ -27,4 +27,11 @@ var unescapeString = function(s) { } }; -module.exports = { unescapeString: unescapeString }; +var normalizeURI = function(uri) { + "use strict"; + return encodeURI(unescape(uri)); +} + +module.exports = { unescapeString: unescapeString, + normalizeURI: normalizeURI + }; -- cgit v1.2.3