From 46e7158c77c0b26684f2d90bae2dba2f52104aa4 Mon Sep 17 00:00:00 2001 From: Steve Gravrock Date: Thu, 4 Mar 2021 12:46:23 -0800 Subject: [PATCH] Removed unused util.htmlEscape --- src/core/util.js | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/core/util.js b/src/core/util.js index 4118deec..64aedef1 100644 --- a/src/core/util.js +++ b/src/core/util.js @@ -7,16 +7,6 @@ getJasmineRequireObj().util = function(j$) { childClass.prototype = new Subclass(); }; - util.htmlEscape = function(str) { - if (!str) { - return str; - } - return str - .replace(/&/g, '&') - .replace(//g, '>'); - }; - util.argsToArray = function(args) { var arrayOfArgs = []; for (var i = 0; i < args.length; i++) {