mirror of
https://github.com/rjNemo/federation
synced 2026-06-07 02:36:39 +00:00
22 lines
397 B
JavaScript
22 lines
397 B
JavaScript
'use strict';
|
|
|
|
function createError(msg, code, props) {
|
|
var err = msg instanceof Error ? msg : new Error(msg);
|
|
var key;
|
|
|
|
if (typeof code === 'object') {
|
|
props = code;
|
|
} else if (code != null) {
|
|
err.code = code;
|
|
}
|
|
|
|
if (props) {
|
|
for (key in props) {
|
|
err[key] = props[key];
|
|
}
|
|
}
|
|
|
|
return err;
|
|
}
|
|
|
|
module.exports = createError;
|