You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
532 B
19 lines
532 B
2 years ago
|
'use strict';
|
||
|
|
||
|
function createCustomError(name, message) {
|
||
|
// use Object.create(), because some VMs prevent setting line/column otherwise
|
||
|
// (iOS Safari 10 even throws an exception)
|
||
|
const error = Object.create(SyntaxError.prototype);
|
||
|
const errorStack = new Error();
|
||
|
|
||
|
return Object.assign(error, {
|
||
|
name,
|
||
|
message,
|
||
|
get stack() {
|
||
|
return (errorStack.stack || '').replace(/^(.+\n){1,3}/, `${name}: ${message}\n`);
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
exports.createCustomError = createCustomError;
|