New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@lwrjs/base-template-engine

Package Overview
Dependencies
Maintainers
8
Versions
234
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lwrjs/base-template-engine - npm Package Compare versions

Comparing version 0.0.2-alpha31 to 0.0.2-alpha32

LICENSE

4

build/engine/micro-template.js

@@ -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"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc