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

callpack

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

callpack - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

14

callpack.js

@@ -61,7 +61,9 @@ module.exports = callpack;

Object.defineProperty(Pack.prototype, Symbol.toStringTag, {
configurable: true,
enumerable: false,
value: 'Pack',
writable: false
});
if (typeof Symbol.toStringTag !== 'undefined') {
Object.defineProperty(Pack.prototype, Symbol.toStringTag, {
configurable: true,
enumerable: false,
value: 'Pack',
writable: false
});
}
{
"name": "callpack",
"version": "2.0.0",
"version": "2.0.1",
"description": "Pack multi-value callback results into a single argument.",

@@ -5,0 +5,0 @@ "main": "callpack.js",

@@ -81,4 +81,9 @@ var test = require('tape');

t.equal(Object.prototype.toString.call(pack), '[object Pack]', 'has a unique toString tag');
if (typeof Symbol.toStringTag !== 'undefined') {
t.equal(Object.prototype.toString.call(pack), '[object Pack]', 'has a unique toString tag');
} else {
t.pass('class is defined');
}
t.end();
});
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