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
29 lines (24 loc) • 695 B
JavaScript
/**
* Attach a transform function to math.range
* Adds a property transform containing the transform function.
*
* This transform creates a range which includes the end value
*/
function factory (type, config, load, typed) {
const range = load(require('../../function/matrix/range'))
return typed('range', {
'...any': function (args) {
const lastIndex = args.length - 1
const last = args[lastIndex]
if (typeof last !== 'boolean') {
// append a parameter includeEnd=true
args.push(true)
}
return range.apply(null, args)
}
})
}
exports.name = 'range'
exports.path = 'expression.transform'
exports.factory = factory