mathjs
Version:
Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with dif
18 lines (14 loc) • 372 B
JavaScript
function factory (type, config, load, typed) {
/**
* @constructor UpdateNode
*/
function UpdateNode () {
// TODO: deprecated since v3. Cleanup some day
throw new Error('UpdateNode is deprecated. Use AssignmentNode instead.')
}
return UpdateNode
}
exports.name = 'UpdateNode'
exports.path = 'expression.node'
exports.factory = factory