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

68 lines (65 loc) 2.29 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.createUnitFunction = void 0; var _factory = require("../../../utils/factory.js"); var _collection = require("../../../utils/collection.js"); var name = 'unit'; var dependencies = ['typed', 'Unit']; // This function is named createUnitFunction to prevent a naming conflict with createUnit var createUnitFunction = exports.createUnitFunction = /* #__PURE__ */(0, _factory.factory)(name, dependencies, function (_ref) { var typed = _ref.typed, Unit = _ref.Unit; /** * Create a unit. Depending on the passed arguments, the function * will create and return a new math.Unit object. * When a matrix is provided, all elements will be converted to units. * * Syntax: * * math.unit(unit : string) * math.unit(value : number, valuelessUnit : Unit) * math.unit(value : number, valuelessUnit : string) * * Examples: * * const kph = math.unit('km/h') // returns Unit km/h (valueless) * const v = math.unit(25, kph) // returns Unit 25 km/h * const a = math.unit(5, 'cm') // returns Unit 50 mm * const b = math.unit('23 kg') // returns Unit 23 kg * a.to('m') // returns Unit 0.05 m * * See also: * * bignumber, boolean, complex, index, matrix, number, string, createUnit * * @param {* | Array | Matrix} args A number and unit. * @return {Unit | Array | Matrix} The created unit */ return typed(name, { Unit: function Unit(x) { return x.clone(); }, string: function string(x) { if (Unit.isValuelessUnit(x)) { return new Unit(null, x); // a pure unit } return Unit.parse(x, { allowNoUnits: true }); // a unit with value, like '5cm' }, 'number | BigNumber | Fraction | Complex, string | Unit': function numberBigNumberFractionComplexStringUnit(value, unit) { return new Unit(value, unit); }, 'number | BigNumber | Fraction': function numberBigNumberFraction(value) { // dimensionless return new Unit(value); }, 'Array | Matrix': typed.referToSelf(function (self) { return function (x) { return (0, _collection.deepMap)(x, self); }; }) }); });