Huge News!Announcing our $40M Series B led by Abstract Ventures.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 10.1.4 to 10.2.0

4

package.json

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

},
"version": "10.1.4",
"version": "10.2.0",
"bundleDependencies": false,

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

"diffler": "^2.0.4",
"mocha": "^10.1.0"
"mocha": "^10.2.0"
},

@@ -15,0 +15,0 @@ "scripts": {

@@ -6,3 +6,3 @@ var assert = require('assert');

describe('require', function () {
it('colors', function () {
it('colors app', function () {
try {

@@ -17,3 +17,73 @@ colors = require('colors')

})
it('all appender', function () {
try {
all = require('../lib/appenders/all')
if (typeof all == 'undefined') {
throw new Error('no all appender')
}
} catch (e) {
assert(false)
}
})
it('func_all appender', function () {
try {
func_all = require('../lib/appenders/func_all')
if (typeof func_all == 'undefined') {
throw new Error('no func_all')
}
} catch (e) {
assert(false)
}
})
it('top_one appender', function () {
try {
top_one = require('../lib/appenders/top_one')
if (typeof top_one == 'undefined') {
throw new Error('no top_one')
}
} catch (e) {
assert(false)
}
})
it('bottom_one appender', function () {
try {
bottom_one = require('../lib/appenders/bottom_one')
if (typeof bottom_one == 'undefined') {
throw new Error('no bottom_one')
}
} catch (e) {
assert(false)
}
})
it('sync_all appender', function () {
try {
sync_all = require('../lib/appenders/sync_all')
if (typeof sync_all == 'undefined') {
throw new Error('no sync_all')
}
} catch (e) {
assert(false)
}
})
it('status appender', function () {
try {
statuss = require('../lib/appenders/status')
if (typeof statuss == 'undefined') {
throw new Error('no status')
}
} catch (e) {
assert(false)
}
})
it('version appender', function () {
try {
version = require('../lib/appenders/version')
if (typeof version == 'undefined') {
throw new Error('no version')
}
} catch (e) {
assert(false)
}
})
})
})

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

},
"version": "10.1.4",
"version": "10.2.0",
"bundleDependencies": false,

@@ -16,3 +16,3 @@ "dependencies": {

"diffler": "^2.0.4",
"mocha": "^10.1.0"
"mocha": "^10.2.0"
},

@@ -19,0 +19,0 @@ "scripts": {

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