feat:node-modules
This commit is contained in:
30
node_modules/mathjs/lib/cjs/function/statistics/utils/improveErrorMessage.js
generated
vendored
Normal file
30
node_modules/mathjs/lib/cjs/function/statistics/utils/improveErrorMessage.js
generated
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.improveErrorMessage = improveErrorMessage;
|
||||
var _is = require("../../../utils/is.js");
|
||||
/**
|
||||
* Improve error messages for statistics functions. Errors are typically
|
||||
* thrown in an internally used function like larger, causing the error
|
||||
* not to mention the function (like max) which is actually used by the user.
|
||||
*
|
||||
* @param {Error} err
|
||||
* @param {String} fnName
|
||||
* @param {*} [value]
|
||||
* @return {Error}
|
||||
*/
|
||||
function improveErrorMessage(err, fnName, value) {
|
||||
// TODO: add information with the index (also needs transform in expression parser)
|
||||
let details;
|
||||
if (String(err).includes('Unexpected type')) {
|
||||
details = arguments.length > 2 ? ' (type: ' + (0, _is.typeOf)(value) + ', value: ' + JSON.stringify(value) + ')' : ' (type: ' + err.data.actual + ')';
|
||||
return new TypeError('Cannot calculate ' + fnName + ', unexpected type of argument' + details);
|
||||
}
|
||||
if (String(err).includes('complex numbers')) {
|
||||
details = arguments.length > 2 ? ' (type: ' + (0, _is.typeOf)(value) + ', value: ' + JSON.stringify(value) + ')' : '';
|
||||
return new TypeError('Cannot calculate ' + fnName + ', no ordering relation is defined for complex numbers' + details);
|
||||
}
|
||||
return err;
|
||||
}
|
||||
Reference in New Issue
Block a user