73 lines
2.3 KiB
JavaScript
73 lines
2.3 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.createEvaluate = void 0;
|
|
|
|
var _collection = require("../../utils/collection.js");
|
|
|
|
var _factory = require("../../utils/factory.js");
|
|
|
|
var _map = require("../../utils/map.js");
|
|
|
|
var name = 'evaluate';
|
|
var dependencies = ['typed', 'parse'];
|
|
var createEvaluate = /* #__PURE__ */(0, _factory.factory)(name, dependencies, function (_ref) {
|
|
var typed = _ref.typed,
|
|
parse = _ref.parse;
|
|
|
|
/**
|
|
* Evaluate an expression.
|
|
*
|
|
* Note the evaluating arbitrary expressions may involve security risks,
|
|
* see [https://mathjs.org/docs/expressions/security.html](https://mathjs.org/docs/expressions/security.html) for more information.
|
|
*
|
|
* Syntax:
|
|
*
|
|
* math.evaluate(expr)
|
|
* math.evaluate(expr, scope)
|
|
* math.evaluate([expr1, expr2, expr3, ...])
|
|
* math.evaluate([expr1, expr2, expr3, ...], scope)
|
|
*
|
|
* Example:
|
|
*
|
|
* math.evaluate('(2+3)/4') // 1.25
|
|
* math.evaluate('sqrt(3^2 + 4^2)') // 5
|
|
* math.evaluate('sqrt(-4)') // 2i
|
|
* math.evaluate(['a=3', 'b=4', 'a*b']) // [3, 4, 12]
|
|
*
|
|
* let scope = {a:3, b:4}
|
|
* math.evaluate('a * b', scope) // 12
|
|
*
|
|
* See also:
|
|
*
|
|
* parse, compile
|
|
*
|
|
* @param {string | string[] | Matrix} expr The expression to be evaluated
|
|
* @param {Object} [scope] Scope to read/write variables
|
|
* @return {*} The result of the expression
|
|
* @throws {Error}
|
|
*/
|
|
return typed(name, {
|
|
string: function string(expr) {
|
|
var scope = (0, _map.createEmptyMap)();
|
|
return parse(expr).compile().evaluate(scope);
|
|
},
|
|
'string, Map | Object': function stringMapObject(expr, scope) {
|
|
return parse(expr).compile().evaluate(scope);
|
|
},
|
|
'Array | Matrix': function ArrayMatrix(expr) {
|
|
var scope = (0, _map.createEmptyMap)();
|
|
return (0, _collection.deepMap)(expr, function (entry) {
|
|
return parse(entry).compile().evaluate(scope);
|
|
});
|
|
},
|
|
'Array | Matrix, Map | Object': function ArrayMatrixMapObject(expr, scope) {
|
|
return (0, _collection.deepMap)(expr, function (entry) {
|
|
return parse(entry).compile().evaluate(scope);
|
|
});
|
|
}
|
|
});
|
|
});
|
|
exports.createEvaluate = createEvaluate; |