New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

queueobj

Package Overview
Dependencies
Maintainers
1
Versions
103
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

queueobj - npm Package Compare versions

Comparing version 9.1.1 to 10.0.0

66

app.js

@@ -116,34 +116,38 @@ /* @author Jim Manton: jrman@risebroadband.net

t.stats = (typeof props.stats != 'undefined') ? props.stats : false;
if (typeof props != `undefined` &&
typeof props.appender != `undefined` &&
typeof props.appender == 'string') {
props.getParent = t.getParent
switch (props.appender) {
case 'all':
t.all = new all(props)
break
case 'top_one':
t.top_one = new top_one(props)
break
case 'bottom_one':
t.bottom_one = new bottom_one(props)
break
case 'func_all':
t.func_all = new func_all(props)
break
case 'array':
t.array = new array(props)
break
case 'status':
t.status = new status(props)
break
case 'version':
t.version = new version(props)
break
case 'sync_all':
t.sync_all = new sync_all(props)
break
default:
throw new Error(`appender(${props.appender}) not found`)
if (typeof props != `undefined`) {
if (typeof props.log != `undefined`) {
console.log = props.log
}
if (typeof props.appender != `undefined` &&
typeof props.appender == 'string') {
props.getParent = t.getParent
switch (props.appender) {
case 'all':
t.all = new all(props)
break
case 'top_one':
t.top_one = new top_one(props)
break
case 'bottom_one':
t.bottom_one = new bottom_one(props)
break
case 'func_all':
t.func_all = new func_all(props)
break
case 'array':
t.array = new array(props)
break
case 'status':
t.status = new status(props)
break
case 'version':
t.version = new version(props)
break
case 'sync_all':
t.sync_all = new sync_all(props)
break
default:
throw new Error(`appender(${props.appender}) not found`)
}
}
return t

@@ -150,0 +154,0 @@ }

@@ -5,3 +5,3 @@ {

},
"version": "9.1.1",
"version": "10.0.0",
"bundleDependencies": false,

@@ -8,0 +8,0 @@ "dependencies": {

@@ -9,3 +9,3 @@ const assert = require('assert'),

},
"version": "9.1.1",
"version": "10.0.0",
"bundleDependencies": false,

@@ -12,0 +12,0 @@ "dependencies": {

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