mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
41923c0c07
PR-URL: https://github.com/nodejs/node/pull/3310 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
14 lines
324 B
JavaScript
14 lines
324 B
JavaScript
'use strict'
|
|
var validate = require('aproba')
|
|
|
|
module.exports = function (parent, cb) {
|
|
validate('F', [cb])
|
|
return function (er) {
|
|
if (!er) return cb.apply(null, arguments)
|
|
if (er instanceof Error && parent && parent.package && parent.package.name) {
|
|
er.parent = parent.package.name
|
|
}
|
|
cb(er)
|
|
}
|
|
}
|