This repository has been archived on 2026-07-15. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
drive/frontend/node_modules/custom-error-instance/bin/factories.js
Elijah 724d70e58b
Some checks failed
Automated Container Build / build-and-push (push) Failing after 12s
Inital build
2026-05-22 12:29:43 -07:00

87 lines
No EOL
2.7 KiB
JavaScript

"use strict";
exports.expectReceive = function(properties, configuration, factory) {
var message;
factory.root(properties, configuration, factory);
message = this.message;
if (properties.hasOwnProperty('expected')) message += ' Expected ' + properties.expected + '.';
if (properties.hasOwnProperty('received')) message += ' Received: ' + properties.received + '.';
this.message = message;
};
exports.root = function(properties, configuration, factories) {
var _this = this;
var code;
var config = { stackLength: Error.stackTraceLimit, rootOnly: true };
var messageStr = '';
var originalStackLength = Error.stackTraceLimit;
var stack;
function updateStack() {
stack[0] = _this.toString();
_this.stack = stack.join('\n');
}
// get configuration options
if (!configuration || typeof configuration !== 'object') configuration = {};
if (configuration.hasOwnProperty('stackLength') &&
typeof configuration.stackLength === 'number' &&
!isNaN(configuration.stackLength) &&
configuration.stackLength >= 0) config.stackLength = configuration.stackLength;
if (!configuration.hasOwnProperty('rootOnly')) config.rootOnly = configuration.rootOnly;
// check if this should only be run as root
if (!config.rootOnly || this.CustomError.parent === Error) {
// copy properties onto this object
Object.keys(properties).forEach(function(key) {
switch(key) {
case 'code':
code = properties.code || void 0;
break;
case 'message':
messageStr = properties.message || '';
break;
default:
_this[key] = properties[key];
}
});
// generate the stack trace
Error.stackTraceLimit = config.stackLength + 2;
stack = (new Error()).stack.split('\n');
stack.splice(0, 3);
stack.unshift('');
Error.stackTraceLimit = originalStackLength;
this.stack = stack.join('\n');
Object.defineProperty(this, 'code', {
configurable: true,
enumerable: true,
get: function() {
return code;
},
set: function(value) {
code = value;
updateStack();
}
});
Object.defineProperty(this, 'message', {
configurable: true,
enumerable: true,
get: function() {
return messageStr;
},
set: function(value) {
messageStr = value;
updateStack();
}
});
updateStack();
}
};