6 lines
138 B
JavaScript
6 lines
138 B
JavaScript
module.exports = function(config, options, cb) {
|
|
const error = new Error('a');
|
|
error.errorProperty = 'errorProperty';
|
|
cb(error);
|
|
};
|