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

chainit

Package Overview
Dependencies
Maintainers
2
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chainit - npm Package Compare versions

Comparing version

to
2.0.3

16

index.js

@@ -124,7 +124,12 @@ module.exports = chainit;

args.push(function() {
var cbArgs = arguments;
var cbArgs = arguments,
err = arguments[0];
if (arguments[0] instanceof Error) {
arguments[0].message = '[' + fnName + niceArgs(callArguments) + '] <= \n ' + arguments[0].message;
if (err instanceof Error && typeof err.addToCallStack === 'function') {
err.addToCallStack({
name: fnName,
args: niceArgs(callArguments)
});
} else if (err instanceof Error) {
err.message = '[' + fnName + niceArgs(callArguments) + '] <= \n ' + err.message;
}

@@ -134,2 +139,5 @@

customCb.apply(ctx, cbArgs);
} else if (err instanceof Error) {
// throw error if it isn't handled by a custom callback
throw err;
}

@@ -136,0 +144,0 @@

{
"name": "chainit",
"version": "2.0.2-backcompat",
"version": "2.0.3",
"description": "Turn an asynchronous JavaScript api into an asynchronous chainable JavaScript api.",

@@ -15,4 +15,4 @@ "main": "index.js",

"devDependencies": {
"mocha": "~1.17.1",
"zuul": "~1.5.4"
"mocha": "~1.18.2",
"zuul": "~1.6.3"
},

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

@@ -155,3 +155,3 @@ describe('chaining an Api', function() {

this.getError('some text error', function(err) {
assert.equal(err.message, '[getError("some text error")] some text error');
assert.equal(err.message, '[getError("some text error")] <= \n some text error');
done(null);

@@ -158,0 +158,0 @@ })