UNPKG

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 (17 loc) 535 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.errorTransform = errorTransform; var _IndexError = require("../../../error/IndexError.js"); /** * Transform zero-based indices to one-based indices in errors * @param {Error} err * @returns {Error | IndexError} Returns the transformed error */ function errorTransform(err) { if (err && err.isIndexError) { return new _IndexError.IndexError(err.index + 1, err.min + 1, err.max !== undefined ? err.max + 1 : undefined); } return err; }