mathjs 9.3.2 → 9.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/HISTORY.md +22 -0
- package/README.md +1 -0
- package/bin/cli.js +11 -11
- package/docs/expressions/parsing.md +21 -4
- package/docs/reference/functions/complex.md +5 -49
- package/docs/reference/functions/eigs.md +12 -12
- package/docs/reference/functions/flatten.md +1 -0
- package/docs/reference/functions/matrixFromColumns.md +1 -1
- package/docs/reference/functions/matrixFromFunction.md +12 -0
- package/docs/reference/functions/matrixFromRows.md +1 -1
- package/docs/reference/functions.md +4 -1
- package/examples/advanced/custom_scope_objects.js +115 -0
- package/lib/browser/math.js +10 -10
- package/lib/browser/math.js.map +1 -1
- package/lib/cjs/core/create.js +8 -7
- package/lib/cjs/core/function/import.js +9 -7
- package/lib/cjs/core/function/typed.js +6 -1
- package/lib/cjs/defaultInstance.js +3 -3
- package/lib/cjs/entry/allFactoriesAny.js +3 -3
- package/lib/cjs/entry/allFactoriesNumber.js +3 -3
- package/lib/cjs/entry/configReadonly.js +5 -4
- package/lib/cjs/entry/dependenciesAny/dependenciesEigs.generated.js +51 -0
- package/lib/cjs/entry/dependenciesAny/dependenciesMatrixFromColumns.generated.js +29 -0
- package/lib/cjs/entry/dependenciesAny/dependenciesMatrixFromFunction.generated.js +26 -0
- package/lib/cjs/entry/dependenciesAny/dependenciesMatrixFromRows.generated.js +29 -0
- package/lib/cjs/entry/dependenciesAny.generated.js +24 -0
- package/lib/cjs/entry/impureFunctionsAny.generated.js +22 -17
- package/lib/cjs/entry/impureFunctionsNumber.generated.js +11 -9
- package/lib/cjs/entry/pureFunctionsAny.generated.js +78 -41
- package/lib/cjs/expression/Parser.js +22 -15
- package/lib/cjs/expression/embeddedDocs/embeddedDocs.js +9 -0
- package/lib/cjs/expression/embeddedDocs/function/matrix/column.js +1 -1
- package/lib/cjs/expression/embeddedDocs/function/matrix/matrixFromColumns.js +15 -0
- package/lib/cjs/expression/embeddedDocs/function/matrix/matrixFromFunction.js +15 -0
- package/lib/cjs/expression/embeddedDocs/function/matrix/matrixFromRows.js +15 -0
- package/lib/cjs/expression/embeddedDocs/function/matrix/row.js +1 -1
- package/lib/cjs/expression/function/evaluate.js +6 -4
- package/lib/cjs/expression/keywords.js +1 -3
- package/lib/cjs/expression/node/AccessorNode.js +1 -0
- package/lib/cjs/expression/node/AssignmentNode.js +6 -3
- package/lib/cjs/expression/node/FunctionAssignmentNode.js +2 -4
- package/lib/cjs/expression/node/FunctionNode.js +76 -46
- package/lib/cjs/expression/node/IndexNode.js +5 -13
- package/lib/cjs/expression/node/Node.js +15 -9
- package/lib/cjs/expression/node/ObjectNode.js +5 -3
- package/lib/cjs/expression/node/SymbolNode.js +2 -2
- package/lib/cjs/expression/node/utils/access.js +5 -3
- package/lib/cjs/expression/node/utils/assign.js +5 -3
- package/lib/cjs/expression/parse.js +10 -14
- package/lib/cjs/expression/transform/utils/compileInlineExpression.js +5 -3
- package/lib/cjs/factoriesAny.js +24 -0
- package/lib/cjs/function/algebra/decomposition/qr.js +5 -3
- package/lib/cjs/function/algebra/simplify/resolve.js +7 -1
- package/lib/cjs/function/algebra/simplify.js +20 -14
- package/lib/cjs/function/algebra/solver/lsolveAll.js +6 -16
- package/lib/cjs/function/algebra/solver/usolveAll.js +6 -16
- package/lib/cjs/function/arithmetic/ceil.js +6 -16
- package/lib/cjs/function/arithmetic/floor.js +6 -16
- package/lib/cjs/function/arithmetic/norm.js +2 -2
- package/lib/cjs/function/arithmetic/pow.js +9 -7
- package/lib/cjs/function/arithmetic/round.js +7 -5
- package/lib/cjs/function/complex/im.js +3 -0
- package/lib/cjs/function/complex/re.js +3 -0
- package/lib/cjs/function/matrix/eigs/complexEigs.js +631 -0
- package/lib/cjs/function/matrix/eigs/realSymetric.js +341 -0
- package/lib/cjs/function/matrix/eigs.js +188 -334
- package/lib/cjs/function/matrix/flatten.js +1 -0
- package/lib/cjs/function/matrix/matrixFromColumns.js +118 -0
- package/lib/cjs/function/matrix/matrixFromFunction.js +85 -0
- package/lib/cjs/function/matrix/matrixFromRows.js +108 -0
- package/lib/cjs/function/probability/pickRandom.js +1 -1
- package/lib/cjs/function/probability/util/seededRNG.js +2 -2
- package/lib/cjs/function/relational/compareNatural.js +2 -2
- package/lib/cjs/header.js +2 -2
- package/lib/cjs/plain/bignumber/index.js +2 -2
- package/lib/cjs/type/bignumber/BigNumber.js +2 -2
- package/lib/cjs/type/complex/Complex.js +5 -5
- package/lib/cjs/type/fraction/Fraction.js +2 -2
- package/lib/cjs/type/matrix/DenseMatrix.js +138 -0
- package/lib/cjs/type/matrix/Matrix.js +10 -0
- package/lib/cjs/type/matrix/SparseMatrix.js +77 -3
- package/lib/cjs/type/matrix/function/matrix.js +2 -1
- package/lib/cjs/type/unit/Unit.js +15 -13
- package/lib/cjs/utils/array.js +1 -1
- package/lib/cjs/utils/customs.js +18 -4
- package/lib/cjs/utils/emitter.js +2 -2
- package/lib/cjs/utils/function.js +6 -2
- package/lib/cjs/utils/is.js +7 -5
- package/lib/cjs/utils/latex.js +2 -2
- package/lib/cjs/utils/map.js +197 -0
- package/lib/cjs/utils/object.js +6 -5
- package/lib/cjs/utils/scope.js +33 -0
- package/lib/cjs/utils/snapshot.js +17 -16
- package/lib/cjs/utils/string.js +6 -4
- package/lib/cjs/version.js +1 -1
- package/lib/esm/constants.js +15 -15
- package/lib/esm/core/create.js +1 -2
- package/lib/esm/core/function/typed.js +5 -1
- package/lib/esm/entry/configReadonly.js +1 -2
- package/lib/esm/entry/dependenciesAny/dependenciesEigs.generated.js +34 -0
- package/lib/esm/entry/dependenciesAny/dependenciesMatrixFromColumns.generated.js +16 -0
- package/lib/esm/entry/dependenciesAny/dependenciesMatrixFromFunction.generated.js +14 -0
- package/lib/esm/entry/dependenciesAny/dependenciesMatrixFromRows.generated.js +16 -0
- package/lib/esm/entry/dependenciesAny.generated.js +3 -0
- package/lib/esm/entry/impureFunctionsAny.generated.js +13 -10
- package/lib/esm/entry/impureFunctionsNumber.generated.js +1 -1
- package/lib/esm/entry/pureFunctionsAny.generated.js +66 -32
- package/lib/esm/expression/Help.js +1 -1
- package/lib/esm/expression/Parser.js +23 -15
- package/lib/esm/expression/embeddedDocs/embeddedDocs.js +6 -0
- package/lib/esm/expression/embeddedDocs/function/matrix/column.js +1 -1
- package/lib/esm/expression/embeddedDocs/function/matrix/matrixFromColumns.js +8 -0
- package/lib/esm/expression/embeddedDocs/function/matrix/matrixFromFunction.js +8 -0
- package/lib/esm/expression/embeddedDocs/function/matrix/matrixFromRows.js +8 -0
- package/lib/esm/expression/embeddedDocs/function/matrix/row.js +1 -1
- package/lib/esm/expression/function/compile.js +1 -1
- package/lib/esm/expression/function/evaluate.js +6 -5
- package/lib/esm/expression/function/help.js +1 -1
- package/lib/esm/expression/function/parser.js +1 -1
- package/lib/esm/expression/keywords.js +1 -3
- package/lib/esm/expression/node/AccessorNode.js +2 -1
- package/lib/esm/expression/node/ArrayNode.js +1 -1
- package/lib/esm/expression/node/AssignmentNode.js +7 -4
- package/lib/esm/expression/node/BlockNode.js +1 -1
- package/lib/esm/expression/node/ConditionalNode.js +1 -1
- package/lib/esm/expression/node/ConstantNode.js +1 -1
- package/lib/esm/expression/node/FunctionAssignmentNode.js +3 -4
- package/lib/esm/expression/node/FunctionNode.js +57 -39
- package/lib/esm/expression/node/IndexNode.js +1 -1
- package/lib/esm/expression/node/Node.js +7 -8
- package/lib/esm/expression/node/ObjectNode.js +1 -1
- package/lib/esm/expression/node/OperatorNode.js +1 -1
- package/lib/esm/expression/node/ParenthesisNode.js +1 -1
- package/lib/esm/expression/node/RangeNode.js +1 -1
- package/lib/esm/expression/node/RelationalNode.js +1 -1
- package/lib/esm/expression/node/SymbolNode.js +3 -3
- package/lib/esm/expression/parse.js +2 -3
- package/lib/esm/expression/transform/apply.transform.js +1 -1
- package/lib/esm/expression/transform/column.transform.js +1 -1
- package/lib/esm/expression/transform/concat.transform.js +1 -1
- package/lib/esm/expression/transform/diff.transform.js +1 -1
- package/lib/esm/expression/transform/filter.transform.js +1 -1
- package/lib/esm/expression/transform/forEach.transform.js +1 -1
- package/lib/esm/expression/transform/index.transform.js +1 -1
- package/lib/esm/expression/transform/map.transform.js +1 -1
- package/lib/esm/expression/transform/max.transform.js +1 -1
- package/lib/esm/expression/transform/mean.transform.js +1 -1
- package/lib/esm/expression/transform/min.transform.js +1 -1
- package/lib/esm/expression/transform/range.transform.js +1 -1
- package/lib/esm/expression/transform/row.transform.js +1 -1
- package/lib/esm/expression/transform/std.transform.js +1 -1
- package/lib/esm/expression/transform/subset.transform.js +1 -1
- package/lib/esm/expression/transform/sum.transform.js +1 -1
- package/lib/esm/expression/transform/utils/compileInlineExpression.js +4 -3
- package/lib/esm/expression/transform/variance.transform.js +1 -1
- package/lib/esm/factoriesAny.js +3 -0
- package/lib/esm/factoriesNumber.js +1 -1
- package/lib/esm/function/algebra/decomposition/lup.js +1 -1
- package/lib/esm/function/algebra/decomposition/qr.js +2 -3
- package/lib/esm/function/algebra/decomposition/slu.js +1 -1
- package/lib/esm/function/algebra/derivative.js +1 -1
- package/lib/esm/function/algebra/rationalize.js +1 -1
- package/lib/esm/function/algebra/simplify/resolve.js +7 -2
- package/lib/esm/function/algebra/simplify/simplifyConstant.js +1 -1
- package/lib/esm/function/algebra/simplify/simplifyCore.js +1 -1
- package/lib/esm/function/algebra/simplify/util.js +1 -1
- package/lib/esm/function/algebra/simplify.js +16 -12
- package/lib/esm/function/algebra/solver/lsolve.js +1 -1
- package/lib/esm/function/algebra/solver/lsolveAll.js +1 -1
- package/lib/esm/function/algebra/solver/lusolve.js +1 -1
- package/lib/esm/function/algebra/solver/usolve.js +1 -1
- package/lib/esm/function/algebra/solver/usolveAll.js +1 -1
- package/lib/esm/function/algebra/sparse/csAmd.js +1 -1
- package/lib/esm/function/algebra/sparse/csChol.js +1 -1
- package/lib/esm/function/algebra/sparse/csCounts.js +1 -1
- package/lib/esm/function/algebra/sparse/csLu.js +1 -1
- package/lib/esm/function/algebra/sparse/csSpsolve.js +1 -1
- package/lib/esm/function/algebra/sparse/csSqr.js +1 -1
- package/lib/esm/function/algebra/sparse/csSymperm.js +1 -1
- package/lib/esm/function/arithmetic/abs.js +1 -1
- package/lib/esm/function/arithmetic/add.js +1 -1
- package/lib/esm/function/arithmetic/addScalar.js +1 -1
- package/lib/esm/function/arithmetic/cbrt.js +1 -1
- package/lib/esm/function/arithmetic/ceil.js +1 -1
- package/lib/esm/function/arithmetic/cube.js +1 -1
- package/lib/esm/function/arithmetic/divide.js +1 -1
- package/lib/esm/function/arithmetic/divideScalar.js +1 -1
- package/lib/esm/function/arithmetic/dotDivide.js +1 -1
- package/lib/esm/function/arithmetic/dotMultiply.js +1 -1
- package/lib/esm/function/arithmetic/dotPow.js +1 -1
- package/lib/esm/function/arithmetic/exp.js +1 -1
- package/lib/esm/function/arithmetic/expm1.js +1 -1
- package/lib/esm/function/arithmetic/fix.js +1 -1
- package/lib/esm/function/arithmetic/floor.js +1 -1
- package/lib/esm/function/arithmetic/gcd.js +1 -1
- package/lib/esm/function/arithmetic/hypot.js +1 -1
- package/lib/esm/function/arithmetic/lcm.js +1 -1
- package/lib/esm/function/arithmetic/log.js +1 -1
- package/lib/esm/function/arithmetic/log10.js +1 -1
- package/lib/esm/function/arithmetic/log1p.js +1 -1
- package/lib/esm/function/arithmetic/log2.js +1 -1
- package/lib/esm/function/arithmetic/mod.js +1 -1
- package/lib/esm/function/arithmetic/multiply.js +1 -1
- package/lib/esm/function/arithmetic/multiplyScalar.js +1 -1
- package/lib/esm/function/arithmetic/norm.js +3 -3
- package/lib/esm/function/arithmetic/nthRoot.js +2 -2
- package/lib/esm/function/arithmetic/nthRoots.js +1 -1
- package/lib/esm/function/arithmetic/pow.js +10 -8
- package/lib/esm/function/arithmetic/round.js +6 -6
- package/lib/esm/function/arithmetic/sign.js +1 -1
- package/lib/esm/function/arithmetic/sqrt.js +1 -1
- package/lib/esm/function/arithmetic/square.js +1 -1
- package/lib/esm/function/arithmetic/subtract.js +1 -1
- package/lib/esm/function/arithmetic/unaryMinus.js +1 -1
- package/lib/esm/function/arithmetic/unaryPlus.js +1 -1
- package/lib/esm/function/arithmetic/xgcd.js +1 -1
- package/lib/esm/function/bitwise/bitAnd.js +1 -1
- package/lib/esm/function/bitwise/bitNot.js +1 -1
- package/lib/esm/function/bitwise/bitOr.js +1 -1
- package/lib/esm/function/bitwise/bitXor.js +1 -1
- package/lib/esm/function/bitwise/leftShift.js +1 -1
- package/lib/esm/function/bitwise/rightArithShift.js +1 -1
- package/lib/esm/function/bitwise/rightLogShift.js +1 -1
- package/lib/esm/function/combinatorics/bellNumbers.js +1 -1
- package/lib/esm/function/combinatorics/catalan.js +1 -1
- package/lib/esm/function/combinatorics/composition.js +1 -1
- package/lib/esm/function/combinatorics/stirlingS2.js +1 -1
- package/lib/esm/function/complex/arg.js +1 -1
- package/lib/esm/function/complex/conj.js +1 -1
- package/lib/esm/function/complex/im.js +4 -1
- package/lib/esm/function/complex/re.js +4 -1
- package/lib/esm/function/geometry/distance.js +1 -1
- package/lib/esm/function/geometry/intersect.js +1 -1
- package/lib/esm/function/logical/and.js +1 -1
- package/lib/esm/function/logical/not.js +1 -1
- package/lib/esm/function/logical/or.js +1 -1
- package/lib/esm/function/logical/xor.js +1 -1
- package/lib/esm/function/matrix/apply.js +1 -1
- package/lib/esm/function/matrix/column.js +1 -1
- package/lib/esm/function/matrix/concat.js +1 -1
- package/lib/esm/function/matrix/count.js +1 -1
- package/lib/esm/function/matrix/cross.js +1 -1
- package/lib/esm/function/matrix/ctranspose.js +1 -1
- package/lib/esm/function/matrix/det.js +1 -1
- package/lib/esm/function/matrix/diag.js +1 -1
- package/lib/esm/function/matrix/diff.js +1 -1
- package/lib/esm/function/matrix/dot.js +1 -1
- package/lib/esm/function/matrix/eigs/complexEigs.js +586 -0
- package/lib/esm/function/matrix/eigs/realSymetric.js +335 -0
- package/lib/esm/function/matrix/eigs.js +187 -335
- package/lib/esm/function/matrix/expm.js +1 -1
- package/lib/esm/function/matrix/filter.js +1 -1
- package/lib/esm/function/matrix/flatten.js +2 -1
- package/lib/esm/function/matrix/forEach.js +1 -1
- package/lib/esm/function/matrix/getMatrixDataType.js +1 -1
- package/lib/esm/function/matrix/identity.js +1 -1
- package/lib/esm/function/matrix/inv.js +1 -1
- package/lib/esm/function/matrix/kron.js +1 -1
- package/lib/esm/function/matrix/map.js +1 -1
- package/lib/esm/function/matrix/matrixFromColumns.js +93 -0
- package/lib/esm/function/matrix/matrixFromFunction.js +78 -0
- package/lib/esm/function/matrix/matrixFromRows.js +83 -0
- package/lib/esm/function/matrix/ones.js +1 -1
- package/lib/esm/function/matrix/partitionSelect.js +1 -1
- package/lib/esm/function/matrix/range.js +1 -1
- package/lib/esm/function/matrix/reshape.js +1 -1
- package/lib/esm/function/matrix/resize.js +1 -1
- package/lib/esm/function/matrix/rotate.js +1 -1
- package/lib/esm/function/matrix/rotationMatrix.js +1 -1
- package/lib/esm/function/matrix/row.js +1 -1
- package/lib/esm/function/matrix/size.js +1 -1
- package/lib/esm/function/matrix/sort.js +1 -1
- package/lib/esm/function/matrix/sqrtm.js +1 -1
- package/lib/esm/function/matrix/squeeze.js +1 -1
- package/lib/esm/function/matrix/subset.js +1 -1
- package/lib/esm/function/matrix/trace.js +1 -1
- package/lib/esm/function/matrix/transpose.js +1 -1
- package/lib/esm/function/matrix/zeros.js +1 -1
- package/lib/esm/function/probability/combinations.js +1 -1
- package/lib/esm/function/probability/combinationsWithRep.js +1 -1
- package/lib/esm/function/probability/factorial.js +1 -1
- package/lib/esm/function/probability/gamma.js +1 -1
- package/lib/esm/function/probability/kldivergence.js +1 -1
- package/lib/esm/function/probability/multinomial.js +1 -1
- package/lib/esm/function/probability/permutations.js +1 -1
- package/lib/esm/function/probability/pickRandom.js +2 -2
- package/lib/esm/function/probability/random.js +2 -2
- package/lib/esm/function/probability/randomInt.js +1 -1
- package/lib/esm/function/relational/compare.js +2 -2
- package/lib/esm/function/relational/compareNatural.js +1 -1
- package/lib/esm/function/relational/compareText.js +2 -2
- package/lib/esm/function/relational/deepEqual.js +1 -1
- package/lib/esm/function/relational/equal.js +2 -2
- package/lib/esm/function/relational/equalScalar.js +2 -2
- package/lib/esm/function/relational/equalText.js +1 -1
- package/lib/esm/function/relational/larger.js +2 -2
- package/lib/esm/function/relational/largerEq.js +2 -2
- package/lib/esm/function/relational/smaller.js +2 -2
- package/lib/esm/function/relational/smallerEq.js +2 -2
- package/lib/esm/function/relational/unequal.js +2 -2
- package/lib/esm/function/set/setCartesian.js +1 -1
- package/lib/esm/function/set/setDifference.js +1 -1
- package/lib/esm/function/set/setDistinct.js +1 -1
- package/lib/esm/function/set/setIntersect.js +1 -1
- package/lib/esm/function/set/setIsSubset.js +1 -1
- package/lib/esm/function/set/setMultiplicity.js +1 -1
- package/lib/esm/function/set/setPowerset.js +1 -1
- package/lib/esm/function/set/setSize.js +1 -1
- package/lib/esm/function/set/setSymDifference.js +1 -1
- package/lib/esm/function/set/setUnion.js +1 -1
- package/lib/esm/function/special/erf.js +1 -1
- package/lib/esm/function/statistics/mad.js +1 -1
- package/lib/esm/function/statistics/max.js +1 -1
- package/lib/esm/function/statistics/mean.js +1 -1
- package/lib/esm/function/statistics/median.js +1 -1
- package/lib/esm/function/statistics/min.js +1 -1
- package/lib/esm/function/statistics/mode.js +1 -1
- package/lib/esm/function/statistics/prod.js +1 -1
- package/lib/esm/function/statistics/quantileSeq.js +1 -1
- package/lib/esm/function/statistics/std.js +1 -1
- package/lib/esm/function/statistics/sum.js +1 -1
- package/lib/esm/function/statistics/variance.js +1 -1
- package/lib/esm/function/string/bin.js +1 -1
- package/lib/esm/function/string/format.js +1 -1
- package/lib/esm/function/string/hex.js +1 -1
- package/lib/esm/function/string/oct.js +1 -1
- package/lib/esm/function/string/print.js +1 -1
- package/lib/esm/function/trigonometry/acos.js +1 -1
- package/lib/esm/function/trigonometry/acosh.js +1 -1
- package/lib/esm/function/trigonometry/acot.js +1 -1
- package/lib/esm/function/trigonometry/acoth.js +1 -1
- package/lib/esm/function/trigonometry/acsc.js +1 -1
- package/lib/esm/function/trigonometry/acsch.js +1 -1
- package/lib/esm/function/trigonometry/asec.js +1 -1
- package/lib/esm/function/trigonometry/asech.js +1 -1
- package/lib/esm/function/trigonometry/asin.js +1 -1
- package/lib/esm/function/trigonometry/asinh.js +1 -1
- package/lib/esm/function/trigonometry/atan.js +1 -1
- package/lib/esm/function/trigonometry/atan2.js +1 -1
- package/lib/esm/function/trigonometry/atanh.js +1 -1
- package/lib/esm/function/trigonometry/cos.js +1 -1
- package/lib/esm/function/trigonometry/cosh.js +1 -1
- package/lib/esm/function/trigonometry/cot.js +1 -1
- package/lib/esm/function/trigonometry/coth.js +1 -1
- package/lib/esm/function/trigonometry/csc.js +1 -1
- package/lib/esm/function/trigonometry/csch.js +1 -1
- package/lib/esm/function/trigonometry/sec.js +1 -1
- package/lib/esm/function/trigonometry/sech.js +1 -1
- package/lib/esm/function/trigonometry/sin.js +1 -1
- package/lib/esm/function/trigonometry/sinh.js +1 -1
- package/lib/esm/function/trigonometry/tan.js +1 -1
- package/lib/esm/function/trigonometry/tanh.js +1 -1
- package/lib/esm/function/unit/to.js +1 -1
- package/lib/esm/function/utils/clone.js +1 -1
- package/lib/esm/function/utils/hasNumericValue.js +1 -1
- package/lib/esm/function/utils/isInteger.js +1 -1
- package/lib/esm/function/utils/isNaN.js +1 -1
- package/lib/esm/function/utils/isNegative.js +1 -1
- package/lib/esm/function/utils/isNumeric.js +1 -1
- package/lib/esm/function/utils/isPositive.js +1 -1
- package/lib/esm/function/utils/isPrime.js +1 -1
- package/lib/esm/function/utils/isZero.js +1 -1
- package/lib/esm/function/utils/numeric.js +1 -1
- package/lib/esm/function/utils/typeOf.js +1 -1
- package/lib/esm/json/reviver.js +1 -1
- package/lib/esm/type/bignumber/BigNumber.js +1 -1
- package/lib/esm/type/bignumber/function/bignumber.js +1 -1
- package/lib/esm/type/boolean.js +1 -1
- package/lib/esm/type/chain/Chain.js +1 -1
- package/lib/esm/type/chain/function/chain.js +1 -1
- package/lib/esm/type/complex/function/complex.js +1 -1
- package/lib/esm/type/fraction/function/fraction.js +1 -1
- package/lib/esm/type/matrix/DenseMatrix.js +75 -1
- package/lib/esm/type/matrix/FibonacciHeap.js +1 -1
- package/lib/esm/type/matrix/ImmutableDenseMatrix.js +1 -1
- package/lib/esm/type/matrix/Matrix.js +10 -0
- package/lib/esm/type/matrix/MatrixIndex.js +1 -1
- package/lib/esm/type/matrix/Spa.js +1 -1
- package/lib/esm/type/matrix/SparseMatrix.js +37 -3
- package/lib/esm/type/matrix/function/index.js +1 -1
- package/lib/esm/type/matrix/function/matrix.js +3 -2
- package/lib/esm/type/matrix/function/sparse.js +1 -1
- package/lib/esm/type/matrix/utils/algorithm01.js +1 -1
- package/lib/esm/type/matrix/utils/algorithm02.js +1 -1
- package/lib/esm/type/matrix/utils/algorithm03.js +1 -1
- package/lib/esm/type/matrix/utils/algorithm04.js +1 -1
- package/lib/esm/type/matrix/utils/algorithm05.js +1 -1
- package/lib/esm/type/matrix/utils/algorithm06.js +1 -1
- package/lib/esm/type/matrix/utils/algorithm07.js +1 -1
- package/lib/esm/type/matrix/utils/algorithm08.js +1 -1
- package/lib/esm/type/matrix/utils/algorithm09.js +1 -1
- package/lib/esm/type/matrix/utils/algorithm10.js +1 -1
- package/lib/esm/type/matrix/utils/algorithm11.js +1 -1
- package/lib/esm/type/matrix/utils/algorithm12.js +1 -1
- package/lib/esm/type/matrix/utils/algorithm13.js +1 -1
- package/lib/esm/type/matrix/utils/algorithm14.js +1 -1
- package/lib/esm/type/number.js +1 -1
- package/lib/esm/type/string.js +1 -1
- package/lib/esm/type/unit/Unit.js +4 -5
- package/lib/esm/type/unit/function/createUnit.js +1 -1
- package/lib/esm/type/unit/function/splitUnit.js +1 -1
- package/lib/esm/type/unit/function/unit.js +1 -1
- package/lib/esm/type/unit/physicalConstants.js +2 -2
- package/lib/esm/utils/array.js +1 -1
- package/lib/esm/utils/customs.js +10 -0
- package/lib/esm/utils/map.js +135 -0
- package/lib/esm/utils/scope.js +26 -0
- package/lib/esm/utils/snapshot.js +3 -4
- package/lib/esm/version.js +1 -1
- package/package.json +18 -9
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { factory } from '../../../utils/factory.js';
|
|
2
2
|
var name = 'algorithm12';
|
|
3
3
|
var dependencies = ['typed', 'DenseMatrix'];
|
|
4
|
-
export var createAlgorithm12 = /* #__PURE__ */factory(name, dependencies,
|
|
4
|
+
export var createAlgorithm12 = /* #__PURE__ */factory(name, dependencies, _ref => {
|
|
5
5
|
var {
|
|
6
6
|
typed,
|
|
7
7
|
DenseMatrix
|
|
@@ -2,7 +2,7 @@ import { factory } from '../../../utils/factory.js';
|
|
|
2
2
|
import { DimensionError } from '../../../error/DimensionError.js';
|
|
3
3
|
var name = 'algorithm13';
|
|
4
4
|
var dependencies = ['typed'];
|
|
5
|
-
export var createAlgorithm13 = /* #__PURE__ */factory(name, dependencies,
|
|
5
|
+
export var createAlgorithm13 = /* #__PURE__ */factory(name, dependencies, _ref => {
|
|
6
6
|
var {
|
|
7
7
|
typed
|
|
8
8
|
} = _ref;
|
|
@@ -2,7 +2,7 @@ import { factory } from '../../../utils/factory.js';
|
|
|
2
2
|
import { clone } from '../../../utils/object.js';
|
|
3
3
|
var name = 'algorithm14';
|
|
4
4
|
var dependencies = ['typed'];
|
|
5
|
-
export var createAlgorithm14 = /* #__PURE__ */factory(name, dependencies,
|
|
5
|
+
export var createAlgorithm14 = /* #__PURE__ */factory(name, dependencies, _ref => {
|
|
6
6
|
var {
|
|
7
7
|
typed
|
|
8
8
|
} = _ref;
|
package/lib/esm/type/number.js
CHANGED
|
@@ -54,7 +54,7 @@ function makeNumberFromNonDecimalParts(parts) {
|
|
|
54
54
|
return result;
|
|
55
55
|
}
|
|
56
56
|
|
|
57
|
-
export var createNumber = /* #__PURE__ */factory(name, dependencies,
|
|
57
|
+
export var createNumber = /* #__PURE__ */factory(name, dependencies, _ref => {
|
|
58
58
|
var {
|
|
59
59
|
typed
|
|
60
60
|
} = _ref;
|
package/lib/esm/type/string.js
CHANGED
|
@@ -3,7 +3,7 @@ import { deepMap } from '../utils/collection.js';
|
|
|
3
3
|
import { format } from '../utils/number.js';
|
|
4
4
|
var name = 'string';
|
|
5
5
|
var dependencies = ['typed'];
|
|
6
|
-
export var createString = /* #__PURE__ */factory(name, dependencies,
|
|
6
|
+
export var createString = /* #__PURE__ */factory(name, dependencies, _ref => {
|
|
7
7
|
var {
|
|
8
8
|
typed
|
|
9
9
|
} = _ref;
|
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+
import _extends from "@babel/runtime/helpers/extends";
|
|
2
|
+
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
2
3
|
|
|
3
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
|
|
4
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
4
5
|
|
|
5
6
|
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
6
7
|
|
|
7
|
-
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
8
|
-
|
|
9
8
|
import { isComplex, isUnit, typeOf } from '../../utils/is.js';
|
|
10
9
|
import { factory } from '../../utils/factory.js';
|
|
11
10
|
import { memoize } from '../../utils/function.js';
|
|
@@ -14,7 +13,7 @@ import { clone, hasOwnProperty } from '../../utils/object.js';
|
|
|
14
13
|
import { createBigNumberPi as createPi } from '../../utils/bignumber/constants.js';
|
|
15
14
|
var name = 'Unit';
|
|
16
15
|
var dependencies = ['?on', 'config', 'addScalar', 'subtract', 'multiplyScalar', 'divideScalar', 'pow', 'abs', 'fix', 'round', 'equal', 'isNumeric', 'format', 'number', 'Complex', 'BigNumber', 'Fraction'];
|
|
17
|
-
export var createUnitClass = /* #__PURE__ */factory(name, dependencies,
|
|
16
|
+
export var createUnitClass = /* #__PURE__ */factory(name, dependencies, _ref => {
|
|
18
17
|
var {
|
|
19
18
|
on,
|
|
20
19
|
config,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { factory } from '../../../utils/factory.js';
|
|
2
2
|
var name = 'createUnit';
|
|
3
3
|
var dependencies = ['typed', 'Unit'];
|
|
4
|
-
export var createCreateUnit = /* #__PURE__ */factory(name, dependencies,
|
|
4
|
+
export var createCreateUnit = /* #__PURE__ */factory(name, dependencies, _ref => {
|
|
5
5
|
var {
|
|
6
6
|
typed,
|
|
7
7
|
Unit
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { factory } from '../../../utils/factory.js';
|
|
2
2
|
var name = 'splitUnit';
|
|
3
3
|
var dependencies = ['typed'];
|
|
4
|
-
export var createSplitUnit = /* #__PURE__ */factory(name, dependencies,
|
|
4
|
+
export var createSplitUnit = /* #__PURE__ */factory(name, dependencies, _ref => {
|
|
5
5
|
var {
|
|
6
6
|
typed
|
|
7
7
|
} = _ref;
|
|
@@ -3,7 +3,7 @@ import { deepMap } from '../../../utils/collection.js';
|
|
|
3
3
|
var name = 'unit';
|
|
4
4
|
var dependencies = ['typed', 'Unit']; // This function is named createUnitFunction to prevent a naming conflict with createUnit
|
|
5
5
|
|
|
6
|
-
export var createUnitFunction = /* #__PURE__ */factory(name, dependencies,
|
|
6
|
+
export var createUnitFunction = /* #__PURE__ */factory(name, dependencies, _ref => {
|
|
7
7
|
var {
|
|
8
8
|
typed,
|
|
9
9
|
Unit
|
|
@@ -64,7 +64,7 @@ export var createPlanckTemperature = /* #__PURE__ */unitFactory('planckTemperatu
|
|
|
64
64
|
|
|
65
65
|
function unitFactory(name, valueStr, unitStr) {
|
|
66
66
|
var dependencies = ['config', 'Unit', 'BigNumber'];
|
|
67
|
-
return factory(name, dependencies,
|
|
67
|
+
return factory(name, dependencies, _ref => {
|
|
68
68
|
var {
|
|
69
69
|
config,
|
|
70
70
|
Unit,
|
|
@@ -84,7 +84,7 @@ function unitFactory(name, valueStr, unitStr) {
|
|
|
84
84
|
|
|
85
85
|
function numberFactory(name, value) {
|
|
86
86
|
var dependencies = ['config', 'BigNumber'];
|
|
87
|
-
return factory(name, dependencies,
|
|
87
|
+
return factory(name, dependencies, _ref2 => {
|
|
88
88
|
var {
|
|
89
89
|
config,
|
|
90
90
|
BigNumber
|
package/lib/esm/utils/array.js
CHANGED
|
@@ -567,7 +567,7 @@ export function generalize(a) {
|
|
|
567
567
|
* This method does not validate Array Matrix shape
|
|
568
568
|
* @param {Array} array
|
|
569
569
|
* @param {function} typeOf Callback function to use to determine the type of a value
|
|
570
|
-
* @return string
|
|
570
|
+
* @return {string}
|
|
571
571
|
*/
|
|
572
572
|
|
|
573
573
|
export function getArrayDataType(array, typeOf) {
|
package/lib/esm/utils/customs.js
CHANGED
|
@@ -41,6 +41,14 @@ function setSafeProperty(object, prop, value) {
|
|
|
41
41
|
|
|
42
42
|
throw new Error('No access to property "' + prop + '"');
|
|
43
43
|
}
|
|
44
|
+
|
|
45
|
+
function getSafeProperties(object) {
|
|
46
|
+
return Object.keys(object).filter(prop => hasOwnProperty(object, prop));
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
function hasSafeProperty(object, prop) {
|
|
50
|
+
return prop in object;
|
|
51
|
+
}
|
|
44
52
|
/**
|
|
45
53
|
* Test whether a property is safe to use for an object.
|
|
46
54
|
* For example .toString and .constructor are not safe
|
|
@@ -158,6 +166,8 @@ var safeNativeMethods = {
|
|
|
158
166
|
export { getSafeProperty };
|
|
159
167
|
export { setSafeProperty };
|
|
160
168
|
export { isSafeProperty };
|
|
169
|
+
export { hasSafeProperty };
|
|
170
|
+
export { getSafeProperties };
|
|
161
171
|
export { validateSafeMethod };
|
|
162
172
|
export { isSafeMethod };
|
|
163
173
|
export { isPlainObject };
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
import { setSafeProperty, hasSafeProperty, getSafeProperty } from './customs.js';
|
|
2
|
+
import { isObject } from './is.js';
|
|
3
|
+
/**
|
|
4
|
+
* A map facade on a bare object.
|
|
5
|
+
*
|
|
6
|
+
* The small number of methods needed to implement a scope,
|
|
7
|
+
* forwarding on to the SafeProperty functions. Over time, the codebase
|
|
8
|
+
* will stop using this method, as all objects will be Maps, rather than
|
|
9
|
+
* more security prone objects.
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
export class ObjectWrappingMap {
|
|
13
|
+
constructor(object) {
|
|
14
|
+
this.wrappedObject = object;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
keys() {
|
|
18
|
+
return Object.keys(this.wrappedObject);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
get(key) {
|
|
22
|
+
return getSafeProperty(this.wrappedObject, key);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
set(key, value) {
|
|
26
|
+
setSafeProperty(this.wrappedObject, key, value);
|
|
27
|
+
return this;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
has(key) {
|
|
31
|
+
return hasSafeProperty(this.wrappedObject, key);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Creates an empty map, or whatever your platform's polyfill is.
|
|
37
|
+
*
|
|
38
|
+
* @returns an empty Map or Map like object.
|
|
39
|
+
*/
|
|
40
|
+
|
|
41
|
+
export function createEmptyMap() {
|
|
42
|
+
return new Map();
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* Creates a Map from the given object.
|
|
46
|
+
*
|
|
47
|
+
* @param { Map | { [key: string]: unknown } | undefined } mapOrObject
|
|
48
|
+
* @returns
|
|
49
|
+
*/
|
|
50
|
+
|
|
51
|
+
export function createMap(mapOrObject) {
|
|
52
|
+
if (!mapOrObject) {
|
|
53
|
+
return createEmptyMap();
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
if (isMap(mapOrObject)) {
|
|
57
|
+
return mapOrObject;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
if (isObject(mapOrObject)) {
|
|
61
|
+
return new ObjectWrappingMap(mapOrObject);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
throw new Error('createMap can create maps from objects or Maps');
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* Unwraps a map into an object.
|
|
68
|
+
*
|
|
69
|
+
* @param {Map} map
|
|
70
|
+
* @returns { [key: string]: unknown }
|
|
71
|
+
*/
|
|
72
|
+
|
|
73
|
+
export function toObject(map) {
|
|
74
|
+
if (map instanceof ObjectWrappingMap) {
|
|
75
|
+
return map.wrappedObject;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
var object = {};
|
|
79
|
+
|
|
80
|
+
for (var key of map.keys()) {
|
|
81
|
+
var value = map.get(key);
|
|
82
|
+
setSafeProperty(object, key, value);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
return object;
|
|
86
|
+
}
|
|
87
|
+
/**
|
|
88
|
+
* Returns `true` if the passed object appears to be a Map (i.e. duck typing).
|
|
89
|
+
*
|
|
90
|
+
* Methods looked for are `get`, `set`, `keys` and `has`.
|
|
91
|
+
*
|
|
92
|
+
* @param {Map | object} object
|
|
93
|
+
* @returns
|
|
94
|
+
*/
|
|
95
|
+
|
|
96
|
+
export function isMap(object) {
|
|
97
|
+
// We can use the fast instanceof, or a slower duck typing check.
|
|
98
|
+
// The duck typing method needs to cover enough methods to not be confused with DenseMatrix.
|
|
99
|
+
if (!object) {
|
|
100
|
+
return false;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
return object instanceof Map || object instanceof ObjectWrappingMap || typeof object.set === 'function' && typeof object.get === 'function' && typeof object.keys === 'function' && typeof object.has === 'function';
|
|
104
|
+
}
|
|
105
|
+
/**
|
|
106
|
+
* Copies the contents of key-value pairs from each `objects` in to `map`.
|
|
107
|
+
*
|
|
108
|
+
* Object is `objects` can be a `Map` or object.
|
|
109
|
+
*
|
|
110
|
+
* This is the `Map` analog to `Object.assign`.
|
|
111
|
+
*/
|
|
112
|
+
|
|
113
|
+
export function assign(map) {
|
|
114
|
+
for (var _len = arguments.length, objects = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
|
115
|
+
objects[_key - 1] = arguments[_key];
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
for (var args of objects) {
|
|
119
|
+
if (!args) {
|
|
120
|
+
continue;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
if (isMap(args)) {
|
|
124
|
+
for (var key of args.keys()) {
|
|
125
|
+
map.set(key, args.get(key));
|
|
126
|
+
}
|
|
127
|
+
} else if (isObject(args)) {
|
|
128
|
+
for (var _key2 of Object.keys(args)) {
|
|
129
|
+
map.set(_key2, args[_key2]);
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
return map;
|
|
135
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { createEmptyMap, assign } from './map.js';
|
|
2
|
+
/**
|
|
3
|
+
* Create a new scope which can access the parent scope,
|
|
4
|
+
* but does not affect it when written. This is suitable for variable definitions
|
|
5
|
+
* within a block node, or function definition.
|
|
6
|
+
*
|
|
7
|
+
* If parent scope has a createSubScope method, it delegates to that. Otherwise,
|
|
8
|
+
* creates an empty map, and copies the parent scope to it, adding in
|
|
9
|
+
* the remaining `args`.
|
|
10
|
+
*
|
|
11
|
+
* @param {Map} parentScope
|
|
12
|
+
* @param {...any} args
|
|
13
|
+
* @returns {Map}
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
export function createSubScope(parentScope) {
|
|
17
|
+
for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
|
18
|
+
args[_key - 1] = arguments[_key];
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
if (typeof parentScope.createSubScope === 'function') {
|
|
22
|
+
return assign(parentScope.createSubScope(), ...args);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
return assign(createEmptyMap(), parentScope, ...args);
|
|
26
|
+
}
|
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+
import _extends from "@babel/runtime/helpers/extends";
|
|
2
|
+
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
2
3
|
|
|
3
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
|
|
4
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
4
5
|
|
|
5
6
|
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
6
7
|
|
|
7
|
-
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
8
|
-
|
|
9
8
|
/**
|
|
10
9
|
* This file contains helper methods to create expected snapshot structures
|
|
11
10
|
* of both instance and ES6 exports.
|
package/lib/esm/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export var version = '9.
|
|
1
|
+
export var version = '9.4.0'; // Note: This file is automatically generated when building math.js.
|
|
2
2
|
// Changes made in this file will be overwritten.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mathjs",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.4.0",
|
|
4
4
|
"description": "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 different data types like numbers, big numbers, complex numbers, fractions, units, and matrices.",
|
|
5
5
|
"author": "Jos de Jong <wjosdejong@gmail.com> (https://github.com/josdejong)",
|
|
6
6
|
"homepage": "https://mathjs.org",
|
|
@@ -25,27 +25,30 @@
|
|
|
25
25
|
"unit"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"
|
|
28
|
+
"@babel/runtime": "^7.14.0",
|
|
29
|
+
"complex.js": "^2.0.13",
|
|
29
30
|
"decimal.js": "^10.2.1",
|
|
30
31
|
"escape-latex": "^1.2.0",
|
|
31
|
-
"fraction.js": "^4.0
|
|
32
|
+
"fraction.js": "^4.1.0",
|
|
32
33
|
"javascript-natural-sort": "^0.7.1",
|
|
33
34
|
"seedrandom": "^3.0.5",
|
|
34
35
|
"tiny-emitter": "^2.1.0",
|
|
35
36
|
"typed-function": "^2.0.0"
|
|
36
37
|
},
|
|
37
38
|
"devDependencies": {
|
|
38
|
-
"@babel/core": "7.
|
|
39
|
+
"@babel/core": "7.14.2",
|
|
39
40
|
"@babel/plugin-transform-object-assign": "7.12.13",
|
|
40
|
-
"@babel/
|
|
41
|
-
"@babel/
|
|
41
|
+
"@babel/plugin-transform-runtime": "7.14.2",
|
|
42
|
+
"@babel/preset-env": "7.14.2",
|
|
43
|
+
"@babel/register": "7.13.16",
|
|
42
44
|
"babel-loader": "8.2.2",
|
|
43
45
|
"benchmark": "2.1.4",
|
|
44
|
-
"codecov": "3.8.
|
|
46
|
+
"codecov": "3.8.2",
|
|
45
47
|
"del": "6.0.0",
|
|
48
|
+
"dtslint": "^4.0.9",
|
|
46
49
|
"expr-eval": "2.0.2",
|
|
47
50
|
"fancy-log": "1.3.3",
|
|
48
|
-
"glob": "7.1.
|
|
51
|
+
"glob": "7.1.7",
|
|
49
52
|
"gulp": "4.0.2",
|
|
50
53
|
"gulp-babel": "8.0.0",
|
|
51
54
|
"handlebars": "4.7.7",
|
|
@@ -59,7 +62,7 @@
|
|
|
59
62
|
"karma-webpack": "4.0.2",
|
|
60
63
|
"math-expression-evaluator": "1.3.7",
|
|
61
64
|
"mkdirp": "1.0.4",
|
|
62
|
-
"mocha": "8.
|
|
65
|
+
"mocha": "8.4.0",
|
|
63
66
|
"ndarray": "1.0.19",
|
|
64
67
|
"ndarray-determinant": "1.0.0",
|
|
65
68
|
"ndarray-gemm": "1.0.0",
|
|
@@ -70,11 +73,13 @@
|
|
|
70
73
|
"pad-right": "0.2.2",
|
|
71
74
|
"standard": "16.0.3",
|
|
72
75
|
"sylvester": "0.0.21",
|
|
76
|
+
"typescript": "^4.2.4",
|
|
73
77
|
"webpack": "4.46.0",
|
|
74
78
|
"zeros": "1.0.0"
|
|
75
79
|
},
|
|
76
80
|
"type": "module",
|
|
77
81
|
"main": "./lib/cjs",
|
|
82
|
+
"types": "./types/index.d.ts",
|
|
78
83
|
"module": "./lib/esm",
|
|
79
84
|
"unpkg": "./lib/browser/math.js",
|
|
80
85
|
"jsdelivr": "./lib/browser/math.js",
|
|
@@ -87,6 +92,10 @@
|
|
|
87
92
|
"import": "./lib/esm/number.js",
|
|
88
93
|
"require": "./lib/cjs/number.js"
|
|
89
94
|
},
|
|
95
|
+
"./lib/esm/number": {
|
|
96
|
+
"import": "./lib/esm/number.js",
|
|
97
|
+
"require": "./lib/cjs/number.js"
|
|
98
|
+
},
|
|
90
99
|
"./package.json": "./package.json",
|
|
91
100
|
"./lib/browser/math.js": "./lib/browser/math.js",
|
|
92
101
|
"./lib/browser/math.js.map": "./lib/browser/math.js.map",
|