ESlint comma-spacing

This commit is contained in:
Peter Jaszkowiak
2017-02-18 01:31:47 -07:00
parent 277a7fb8b4
commit 2e031f3759
24 changed files with 54 additions and 49 deletions

View File

@@ -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) {