diff --git a/packages/string-templates/src/processors/preprocessor.js b/packages/string-templates/src/processors/preprocessor.js index 8c2f9f7c56..af6d656eaa 100644 --- a/packages/string-templates/src/processors/preprocessor.js +++ b/packages/string-templates/src/processors/preprocessor.js @@ -41,7 +41,8 @@ module.exports.processors = [ new Preprocessor(PreprocessorNames.FIX_FUNCTIONS, statement => { for (let specialCase of FUNCTION_CASES) { - const toFind = `{ ${specialCase}`, replacement = `{${specialCase}` + const toFind = `{ ${specialCase}`, + replacement = `{${specialCase}` statement = statement.replace(new RegExp(toFind, "g"), replacement) } return statement diff --git a/packages/string-templates/src/utilities.js b/packages/string-templates/src/utilities.js index 45064b9a8b..1f88db9d41 100644 --- a/packages/string-templates/src/utilities.js +++ b/packages/string-templates/src/utilities.js @@ -13,7 +13,10 @@ module.exports.swapStrings = (string, start, length, swap) => { // removes null and undefined module.exports.removeNull = obj => { - obj = _(obj).omitBy(_.isUndefined).omitBy(_.isNull).value() + obj = _(obj) + .omitBy(_.isUndefined) + .omitBy(_.isNull) + .value() for (let [key, value] of Object.entries(obj)) { // only objects if (typeof value === "object" && !Array.isArray(value)) { @@ -25,7 +28,7 @@ module.exports.removeNull = obj => { module.exports.addConstants = obj => { if (obj.now == null) { - obj.now = (new Date()).toISOString() + obj.now = new Date().toISOString() } return obj }