Comparing version
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 @@ }) |
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
22408
0.18%573
1.6%1
-50%13
-7.14%2
100%