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
45 lines (39 loc) • 1.44 kB
JavaScript
import { isArray, isBigNumber, isMatrix, isNumber, isRange } from '../../utils/is'
import { factory } from '../../utils/factory'
const name = 'index'
const dependencies = ['Index']
export const createIndexTransform = /* #__PURE__ */ factory(name, dependencies, ({ Index }) => {
/**
* Attach a transform function to math.index
* Adds a property transform containing the transform function.
*
* This transform creates a one-based index instead of a zero-based index
*/
return function indexTransform () {
const args = []
for (let i = 0, ii = arguments.length; i < ii; i++) {
let arg = arguments[i]
// change from one-based to zero based, and convert BigNumber to number
if (isRange(arg)) {
arg.start--
arg.end -= (arg.step > 0 ? 0 : 2)
} else if (arg && arg.isSet === true) {
arg = arg.map(function (v) { return v - 1 })
} else if (isArray(arg) || isMatrix(arg)) {
arg = arg.map(function (v) { return v - 1 })
} else if (isNumber(arg)) {
arg--
} else if (isBigNumber(arg)) {
arg = arg.toNumber() - 1
} else if (typeof arg === 'string') {
// leave as is
} else {
throw new TypeError('Dimension must be an Array, Matrix, number, string, or Range')
}
args[i] = arg
}
const res = new Index()
Index.apply(res, args)
return res
}
}, { isTransformFunction: true })