@lwrjs/base-template-engine
Advanced tools
Comparing version 0.0.2-alpha31 to 0.0.2-alpha32
@@ -19,3 +19,3 @@ "use strict"; | ||
for (const property of key.split('.')) { | ||
result = result ? result[property] : ''; | ||
result = result && result[property] ? result[property] : ''; | ||
} | ||
@@ -30,3 +30,3 @@ return String(result); | ||
for (const property of key.split('.')) { | ||
result = result ? result[property] : ''; | ||
result = result && result[property] ? result[property] : ''; | ||
} | ||
@@ -33,0 +33,0 @@ return escape_goat_1.htmlEscape(String(result)); |
@@ -7,3 +7,3 @@ { | ||
}, | ||
"version": "0.0.2-alpha31", | ||
"version": "0.0.2-alpha32", | ||
"homepage": "https://lwr.dev/", | ||
@@ -26,3 +26,4 @@ "repository": { | ||
"escape-goat": "^3.0.0" | ||
} | ||
}, | ||
"gitHead": "2d07a298719f056b7ce9c16788f6e57ab64723dd" | ||
} |
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
6147
8
0