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

template-adapter

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

template-adapter - npm Package Compare versions

Comparing version 1.0.0 to 1.1.0

2

package.json
{
"name": "template-adapter",
"version": "1.0.0",
"version": "1.1.0",
"description": "",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -9,9 +9,5 @@ var Mustache = require('mustache');

render: function(templateName, templateVars, parse) {
parse = isUndf(parse) ? false : parse;
render: function(templateName, templateVars) {
var template = this.getHtml(templateName);
if (!template) return false;
if (parse) {
Mustache.parse(template);
}
return Mustache.render(template, templateVars);

@@ -18,0 +14,0 @@ },

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