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

nunjucks

Package Overview
Dependencies
Maintainers
1
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nunjucks - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

2

package.json
{
"name": "nunjucks",
"description": "A jinja inspired templating engine",
"version": "0.1.0",
"version": "0.1.1",
"author": {

@@ -6,0 +6,0 @@ "name": "James Long",

@@ -7,2 +7,5 @@

// Node <0.7.1 compatibility
var existsSync = fs.existsSync ? fs.existsSync : path.existsSync;
var FileSystemLoader = Object.extend({

@@ -24,3 +27,3 @@ init: function(searchPaths) {

var p = path.join(paths[i], name);
if(fs.existsSync(p)) {
if(existsSync(p)) {
fullpath = p;

@@ -27,0 +30,0 @@ break;

@@ -63,3 +63,3 @@

if(lineno && colno) {
msg = '[' + lineno + ',' + colno + '] ' + msg;
msg = '[Line ' + (lineno + 1) + ', Column ' + (colno + 1) + '] ' + msg;
}

@@ -649,3 +649,5 @@

else {
throw new Error("parseExpression: invalid token: " + tok.value);
this.fail('unexpected token: ' + tok.value,
tok.lineno,
tok.colno);
}

@@ -652,0 +654,0 @@ },

Sorry, the diff of this file is too big to display

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