mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
29 lines
699 B
JavaScript
29 lines
699 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* 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) {
|
|
var range = load(require('../../function/matrix/range'));
|
|
|
|
return typed('range', {
|
|
'...any': function (args) {
|
|
var lastIndex = args.length - 1;
|
|
var 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;
|