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

jade

Package Overview
Dependencies
Maintainers
1
Versions
131
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jade - npm Package Compare versions

Comparing version 0.27.5 to 0.27.6

2

lib/jade.js

@@ -23,3 +23,3 @@ /*!

exports.version = '0.27.5';
exports.version = '0.27.6';

@@ -26,0 +26,0 @@ /**

@@ -13,3 +13,4 @@

var Lexer = require('./lexer')
, nodes = require('./nodes');
, nodes = require('./nodes')
, utils = require('./utils');

@@ -489,3 +490,3 @@ /**

, parser = new Parser(str, path, this.options);
parser.blocks = this.blocks;
parser.blocks = utils.merge({}, this.blocks);
parser.mixins = this.mixins;

@@ -492,0 +493,0 @@

@@ -49,2 +49,17 @@

return interpolate(escape(str));
};
};
/**
* Merge `b` into `a`.
*
* @param {Object} a
* @param {Object} b
* @return {Object}
* @api public
*/
exports.merge = function(a, b) {
for (var key in b) a[key] = b[key];
return a;
};
{
"name": "jade",
"description": "Jade template engine",
"version": "0.27.5",
"version": "0.27.6",
"author": "TJ Holowaychuk <tj@vision-media.ca>",

@@ -6,0 +6,0 @@ "repository": "git://github.com/visionmedia/jade",

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