Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

underscore-template-loader

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

underscore-template-loader - npm Package Compare versions

Comparing version 0.2.2 to 0.2.3

7

index.js

@@ -11,9 +11,8 @@ var _ = require('underscore');

var self = readFile;
self.buffer = {} || self.buffer;
self.buffer = self.buffer || {};
if (filepath in self.buffer) {
if (filepath in self.buffer)
return self.buffer[filepath];
}
var content = resolveContent(fs.readFileSync(path.join(root, filepath), 'utf8'), root);
var content = readContent(fs.readFileSync(path.join(root, filepath), 'utf8'), root);
self.buffer[filepath] = content;

@@ -20,0 +19,0 @@ return self.buffer[filepath];

{
"name": "underscore-template-loader",
"version": "0.2.2",
"version": "0.2.3",
"description": "A Underscore template loader for Webpack",

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

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