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

dustjs-linkedin

Package Overview
Dependencies
Maintainers
4
Versions
55
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dustjs-linkedin - npm Package Compare versions

Comparing version 2.1.4 to 2.1.5

_SpecRunner.html

11

lib/dust.js

@@ -60,10 +60,4 @@ var dust = {};

dust.log = function(message, type) {
// dust.isDebug is deprecated, so this conditional will default the debugLevel to INFO if it's set to maintain backcompat.
if (dust.isDebug && dust.debugLevel === NONE) {
logger.log('[!!!DEPRECATION WARNING!!!]: dust.isDebug is deprecated. Set dust.debugLevel instead to the level of logging you want ["debug","info","warn","error","none"]');
dust.debugLevel = INFO;
}
type = type || INFO;
if (dust.indexInArray(loggingLevels, type) >= dust.indexInArray(loggingLevels, dust.debugLevel)) {
if (dust.debugLevel !== NONE && dust.indexInArray(loggingLevels, type) >= dust.indexInArray(loggingLevels, dust.debugLevel)) {
if(!dust.logQueue) {

@@ -239,3 +233,2 @@ dust.logQueue = [];

auto = null;
dust.log('Using unescape filter on [' + string + ']', DEBUG);
}

@@ -299,3 +292,2 @@ else if (typeof dust.filters[name] === 'function') {

var ctx = this.stack, value, globalValue;
dust.log('Searching for reference [{' + key + '}] in template [' + this.templateName + ']', DEBUG);
while(ctx) {

@@ -323,3 +315,2 @@ if (ctx.isObject) {

dust.log('Searching for reference [{' + down.join('.') + '}] in template [' + this.templateName + ']', DEBUG);
if (cur && len === 0) return ctx.head;

@@ -326,0 +317,0 @@ ctx = ctx.head;

{
"name": "dustjs-linkedin",
"version": "2.1.4",
"version": "2.1.5",
"author": "Aleksander Williams",

@@ -5,0 +5,0 @@ "description": "Asynchronous templates for the browser and node.js ( LinkedIn fork )",

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