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.2.9 to 2.2.10

_SpecRunner.html

10

lib/dust.js

@@ -61,10 +61,4 @@ /*global console */

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) {

@@ -250,3 +244,2 @@ dust.logQueue = [];

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

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

value, first, len, ctxThis;
dust.log('Searching for reference [{' + down.join('.') + '}] in template [' + this.getTemplateName() + ']', DEBUG);
first = down[0];

@@ -348,0 +340,0 @@ len = down.length;

{
"name": "dustjs-linkedin",
"version": "2.2.9",
"version": "2.2.10",
"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