ESlint quotes

This commit is contained in:
Peter Jaszkowiak
2017-02-18 01:56:23 -07:00
parent 604358ecc4
commit a038c66549
161 changed files with 356 additions and 356 deletions

View File

@@ -1,5 +1,5 @@
(function (exports) {
"use strict";
'use strict';
// export the class if we are in a Node-like system.
@@ -56,7 +56,7 @@
helpers.stringify = function (obj) {
// Turns the incoming object into a JSON string
return JSON.stringify(obj).replace(/&/gm, "&amp;").replace(/</gm, "&lt;").replace(/>/gm, "&gt;").replace(/"/g, '&quot;');
return JSON.stringify(obj).replace(/&/gm, '&amp;').replace(/</gm, '&lt;').replace(/>/gm, '&gt;').replace(/"/g, '&quot;');
};
helpers.escape = function (str) {