mathjs 15.0.0 → 15.1.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 -6
- package/README.md +1 -1
- package/lib/browser/math.js +1 -1
- package/lib/browser/math.js.LICENSE.txt +2 -2
- package/lib/browser/math.js.map +1 -1
- package/lib/cjs/entry/dependenciesAny/dependenciesBernoulli.generated.js +25 -0
- package/lib/cjs/entry/dependenciesAny/dependenciesConstantNode.generated.js +2 -0
- package/lib/cjs/entry/dependenciesAny/dependenciesEqual.generated.js +0 -2
- package/lib/cjs/entry/dependenciesAny/dependenciesIsBounded.generated.js +17 -0
- package/lib/cjs/entry/dependenciesAny/dependenciesIsFinite.generated.js +21 -0
- package/lib/cjs/entry/dependenciesAny/dependenciesIsInteger.generated.js +2 -0
- package/lib/cjs/entry/dependenciesAny/dependenciesSimplifyConstant.generated.js +2 -0
- package/lib/cjs/entry/dependenciesAny/dependenciesUnitClass.generated.js +0 -2
- package/lib/cjs/entry/dependenciesAny/dependenciesZeta.generated.js +2 -0
- package/lib/cjs/entry/dependenciesAny.generated.js +21 -0
- package/lib/cjs/entry/dependenciesNumber/dependenciesBernoulli.generated.js +21 -0
- package/lib/cjs/entry/dependenciesNumber/dependenciesConstantNode.generated.js +2 -0
- package/lib/cjs/entry/dependenciesNumber/dependenciesIsBounded.generated.js +17 -0
- package/lib/cjs/entry/dependenciesNumber/dependenciesIsFinite.generated.js +21 -0
- package/lib/cjs/entry/dependenciesNumber/dependenciesSimplifyConstant.generated.js +2 -0
- package/lib/cjs/entry/dependenciesNumber/dependenciesZeta.generated.js +2 -0
- package/lib/cjs/entry/dependenciesNumber.generated.js +21 -0
- package/lib/cjs/entry/impureFunctionsAny.generated.js +217 -212
- package/lib/cjs/entry/impureFunctionsNumber.generated.js +82 -77
- package/lib/cjs/entry/pureFunctionsAny.generated.js +668 -652
- package/lib/cjs/entry/pureFunctionsNumber.generated.js +155 -140
- package/lib/cjs/expression/embeddedDocs/embeddedDocs.js +6 -0
- package/lib/cjs/expression/embeddedDocs/function/combinatorics/stirlingS2.js +2 -2
- package/lib/cjs/expression/embeddedDocs/function/probability/bernoulli.js +14 -0
- package/lib/cjs/expression/embeddedDocs/function/utils/isBounded.js +14 -0
- package/lib/cjs/expression/embeddedDocs/function/utils/isFinite.js +14 -0
- package/lib/cjs/expression/embeddedDocs/function/utils/isNaN.js +1 -1
- package/lib/cjs/expression/embeddedDocs/function/utils/isNumeric.js +1 -1
- package/lib/cjs/expression/node/AccessorNode.js +36 -7
- package/lib/cjs/expression/node/ConstantNode.js +4 -4
- package/lib/cjs/expression/node/FunctionNode.js +20 -5
- package/lib/cjs/expression/parse.js +36 -12
- package/lib/cjs/factoriesAny.js +21 -0
- package/lib/cjs/factoriesNumber.js +23 -2
- package/lib/cjs/function/algebra/simplifyConstant.js +3 -2
- package/lib/cjs/function/arithmetic/nthRoots.js +5 -1
- package/lib/cjs/function/probability/bernoulli.js +108 -0
- package/lib/cjs/function/relational/equal.js +2 -3
- package/lib/cjs/function/special/zeta.js +3 -2
- package/lib/cjs/function/utils/isBounded.js +54 -0
- package/lib/cjs/function/utils/isFinite.js +50 -0
- package/lib/cjs/function/utils/isInteger.js +7 -15
- package/lib/cjs/function/utils/isNaN.js +1 -1
- package/lib/cjs/function/utils/isNumeric.js +1 -1
- package/lib/cjs/header.js +2 -2
- package/lib/cjs/json/replacer.js +1 -1
- package/lib/cjs/plain/number/probability.js +2 -2
- package/lib/cjs/plain/number/trigonometry.js +1 -1
- package/lib/cjs/type/fraction/function/fraction.js +1 -1
- package/lib/cjs/type/matrix/SparseMatrix.js +24 -4
- package/lib/cjs/type/unit/Unit.js +12 -8
- package/lib/cjs/utils/number.js +7 -7
- package/lib/cjs/utils/optimizeCallback.js +13 -1
- package/lib/cjs/version.js +1 -1
- package/lib/esm/entry/dependenciesAny/dependenciesBernoulli.generated.js +18 -0
- package/lib/esm/entry/dependenciesAny/dependenciesConstantNode.generated.js +2 -0
- package/lib/esm/entry/dependenciesAny/dependenciesEqual.generated.js +0 -2
- package/lib/esm/entry/dependenciesAny/dependenciesIsBounded.generated.js +10 -0
- package/lib/esm/entry/dependenciesAny/dependenciesIsFinite.generated.js +14 -0
- package/lib/esm/entry/dependenciesAny/dependenciesIsInteger.generated.js +2 -0
- package/lib/esm/entry/dependenciesAny/dependenciesSimplifyConstant.generated.js +2 -0
- package/lib/esm/entry/dependenciesAny/dependenciesUnitClass.generated.js +0 -2
- package/lib/esm/entry/dependenciesAny/dependenciesZeta.generated.js +2 -0
- package/lib/esm/entry/dependenciesAny.generated.js +3 -0
- package/lib/esm/entry/dependenciesNumber/dependenciesBernoulli.generated.js +14 -0
- package/lib/esm/entry/dependenciesNumber/dependenciesConstantNode.generated.js +2 -0
- package/lib/esm/entry/dependenciesNumber/dependenciesIsBounded.generated.js +10 -0
- package/lib/esm/entry/dependenciesNumber/dependenciesIsFinite.generated.js +14 -0
- package/lib/esm/entry/dependenciesNumber/dependenciesSimplifyConstant.generated.js +2 -0
- package/lib/esm/entry/dependenciesNumber/dependenciesZeta.generated.js +2 -0
- package/lib/esm/entry/dependenciesNumber.generated.js +3 -0
- package/lib/esm/entry/impureFunctionsAny.generated.js +219 -214
- package/lib/esm/entry/impureFunctionsNumber.generated.js +84 -79
- package/lib/esm/entry/pureFunctionsAny.generated.js +665 -649
- package/lib/esm/entry/pureFunctionsNumber.generated.js +154 -139
- package/lib/esm/expression/embeddedDocs/embeddedDocs.js +6 -0
- package/lib/esm/expression/embeddedDocs/function/combinatorics/stirlingS2.js +2 -2
- package/lib/esm/expression/embeddedDocs/function/probability/bernoulli.js +8 -0
- package/lib/esm/expression/embeddedDocs/function/utils/isBounded.js +8 -0
- package/lib/esm/expression/embeddedDocs/function/utils/isFinite.js +8 -0
- package/lib/esm/expression/embeddedDocs/function/utils/isNaN.js +1 -1
- package/lib/esm/expression/embeddedDocs/function/utils/isNumeric.js +1 -1
- package/lib/esm/expression/node/AccessorNode.js +36 -7
- package/lib/esm/expression/node/ConstantNode.js +4 -4
- package/lib/esm/expression/node/FunctionNode.js +20 -5
- package/lib/esm/expression/parse.js +36 -12
- package/lib/esm/factoriesAny.js +3 -0
- package/lib/esm/factoriesNumber.js +3 -0
- package/lib/esm/function/algebra/simplifyConstant.js +3 -2
- package/lib/esm/function/arithmetic/nthRoots.js +5 -1
- package/lib/esm/function/probability/bernoulli.js +102 -0
- package/lib/esm/function/relational/equal.js +2 -3
- package/lib/esm/function/special/zeta.js +3 -2
- package/lib/esm/function/utils/isBounded.js +48 -0
- package/lib/esm/function/utils/isFinite.js +44 -0
- package/lib/esm/function/utils/isInteger.js +7 -15
- package/lib/esm/function/utils/isNaN.js +1 -1
- package/lib/esm/function/utils/isNumeric.js +1 -1
- package/lib/esm/json/replacer.js +1 -1
- package/lib/esm/plain/number/probability.js +2 -2
- package/lib/esm/plain/number/trigonometry.js +1 -1
- package/lib/esm/type/fraction/function/fraction.js +1 -1
- package/lib/esm/type/matrix/SparseMatrix.js +24 -4
- package/lib/esm/type/unit/Unit.js +12 -8
- package/lib/esm/utils/number.js +7 -7
- package/lib/esm/utils/optimizeCallback.js +13 -1
- package/lib/esm/version.js +1 -1
- package/package.json +8 -8
- package/types/index.d.ts +535 -223
|
@@ -15,9 +15,27 @@ export var createSparseMatrixClass = /* #__PURE__ */factory(name, dependencies,
|
|
|
15
15
|
Matrix
|
|
16
16
|
} = _ref;
|
|
17
17
|
/**
|
|
18
|
-
* Sparse Matrix implementation. This type implements
|
|
19
|
-
*
|
|
20
|
-
*
|
|
18
|
+
* Sparse Matrix implementation. This type (currently) implements 2D
|
|
19
|
+
* matrices only via the format known as
|
|
20
|
+
* [Compressed Column Storage](https://en.wikipedia.org/wiki/Sparse_matrix#Compressed_sparse_column_(CSC_or_CCS)).
|
|
21
|
+
*
|
|
22
|
+
* The structure/invariants of the internal data should be:
|
|
23
|
+
* 1. _values is an array of the nonzero values in order from top to bottom
|
|
24
|
+
* (of each column), left to right.
|
|
25
|
+
* 2. _index is an array of row numbers, of the same length as and
|
|
26
|
+
* corresponding positionally to _values.
|
|
27
|
+
* 3. _ptr is an array of length one more than the number of columns. For j
|
|
28
|
+
* less than the number of columns, the "half-open" span of indices
|
|
29
|
+
* _ptr[j] to _ptr[j+1] (i.e. including _ptr[j] if it is less than
|
|
30
|
+
* _ptr[j+1], but never including _ptr[j+1]) are the indices in _values
|
|
31
|
+
* of the nonzero elements in column j. Note there are no nonzero elements
|
|
32
|
+
* in column j exactly when _ptr[j] === _ptr[j+1], and that the final
|
|
33
|
+
* entry in _ptr is always exactly the number of nonzero entries in the
|
|
34
|
+
* matrix.
|
|
35
|
+
* 4. _size is a length-2 array consisting of the number of rows followed by
|
|
36
|
+
* the number of columns.
|
|
37
|
+
* 5. _datatype, if set, is the mathjs typeOf value of all entries of the
|
|
38
|
+
* SparseMatrix.
|
|
21
39
|
* @class SparseMatrix
|
|
22
40
|
*/
|
|
23
41
|
function SparseMatrix(data, datatype) {
|
|
@@ -135,7 +153,9 @@ export var createSparseMatrixClass = /* #__PURE__ */factory(name, dependencies,
|
|
|
135
153
|
} while (j < columns);
|
|
136
154
|
}
|
|
137
155
|
// store number of values in ptr
|
|
138
|
-
matrix._ptr.
|
|
156
|
+
while (matrix._ptr.length <= columns) {
|
|
157
|
+
matrix._ptr.push(matrix._index.length);
|
|
158
|
+
}
|
|
139
159
|
// size
|
|
140
160
|
matrix._size = [rows, columns];
|
|
141
161
|
}
|
|
@@ -9,7 +9,7 @@ import { endsWith } from '../../utils/string.js';
|
|
|
9
9
|
import { clone, hasOwnProperty } from '../../utils/object.js';
|
|
10
10
|
import { createBigNumberPi as createPi } from '../../utils/bignumber/constants.js';
|
|
11
11
|
var name = 'Unit';
|
|
12
|
-
var dependencies = ['?on', 'config', 'addScalar', 'subtractScalar', 'multiplyScalar', 'divideScalar', 'pow', 'abs', 'fix', 'round', 'equal', 'isNumeric', 'format', '
|
|
12
|
+
var dependencies = ['?on', 'config', 'addScalar', 'subtractScalar', 'multiplyScalar', 'divideScalar', 'pow', 'abs', 'fix', 'round', 'equal', 'isNumeric', 'format', 'number', 'Complex', 'BigNumber', 'Fraction'];
|
|
13
13
|
export var createUnitClass = /* #__PURE__ */factory(name, dependencies, _ref => {
|
|
14
14
|
var {
|
|
15
15
|
on,
|
|
@@ -25,13 +25,15 @@ export var createUnitClass = /* #__PURE__ */factory(name, dependencies, _ref =>
|
|
|
25
25
|
equal,
|
|
26
26
|
isNumeric,
|
|
27
27
|
format,
|
|
28
|
-
toBest,
|
|
29
28
|
number: _number,
|
|
30
29
|
Complex,
|
|
31
30
|
BigNumber: _BigNumber,
|
|
32
31
|
Fraction: _Fraction
|
|
33
32
|
} = _ref;
|
|
34
33
|
var toNumber = _number;
|
|
34
|
+
var fixPrefixDefault = false;
|
|
35
|
+
var skipAutomaticSimplificationDefault = true;
|
|
36
|
+
|
|
35
37
|
/**
|
|
36
38
|
* A unit can be constructed in the following ways:
|
|
37
39
|
*
|
|
@@ -58,13 +60,13 @@ export var createUnitClass = /* #__PURE__ */factory(name, dependencies, _ref =>
|
|
|
58
60
|
if (!(value === null || value === undefined || isNumeric(value) || isComplex(value))) {
|
|
59
61
|
throw new TypeError('First parameter in Unit constructor must be number, BigNumber, Fraction, Complex, or undefined');
|
|
60
62
|
}
|
|
61
|
-
this.fixPrefix =
|
|
63
|
+
this.fixPrefix = fixPrefixDefault; // if true, function format will not search for the
|
|
62
64
|
// best prefix but leave it as initially provided.
|
|
63
65
|
// fixPrefix is set true by the method Unit.to
|
|
64
66
|
|
|
65
67
|
// The justification behind this is that if the constructor is explicitly called,
|
|
66
68
|
// the caller wishes the units to be returned exactly as supplied.
|
|
67
|
-
this.skipAutomaticSimplification =
|
|
69
|
+
this.skipAutomaticSimplification = skipAutomaticSimplificationDefault;
|
|
68
70
|
if (valuelessUnit === undefined) {
|
|
69
71
|
this.units = [];
|
|
70
72
|
this.dimensions = BASE_DIMENSIONS.map(x => 0);
|
|
@@ -855,14 +857,15 @@ export var createUnitClass = /* #__PURE__ */factory(name, dependencies, _ref =>
|
|
|
855
857
|
* Get a JSON representation of the unit
|
|
856
858
|
* @memberof Unit
|
|
857
859
|
* @returns {Object} Returns a JSON object structured as:
|
|
858
|
-
* `{"mathjs": "Unit", "value": 2, "unit": "cm", "fixPrefix": false}`
|
|
860
|
+
* `{"mathjs": "Unit", "value": 2, "unit": "cm", "fixPrefix": false, "skipSimp": true}`
|
|
859
861
|
*/
|
|
860
862
|
Unit.prototype.toJSON = function () {
|
|
861
863
|
return {
|
|
862
864
|
mathjs: 'Unit',
|
|
863
865
|
value: this._denormalize(this.value),
|
|
864
866
|
unit: this.units.length > 0 ? this.formatUnits() : null,
|
|
865
|
-
fixPrefix: this.fixPrefix
|
|
867
|
+
fixPrefix: this.fixPrefix,
|
|
868
|
+
skipSimp: this.skipAutomaticSimplification
|
|
866
869
|
};
|
|
867
870
|
};
|
|
868
871
|
|
|
@@ -874,9 +877,10 @@ export var createUnitClass = /* #__PURE__ */factory(name, dependencies, _ref =>
|
|
|
874
877
|
* @return {Unit}
|
|
875
878
|
*/
|
|
876
879
|
Unit.fromJSON = function (json) {
|
|
877
|
-
var _json$unit;
|
|
880
|
+
var _json$unit, _json$fixPrefix, _json$skipSimp;
|
|
878
881
|
var unit = new Unit(json.value, (_json$unit = json.unit) !== null && _json$unit !== void 0 ? _json$unit : undefined);
|
|
879
|
-
unit.fixPrefix = json.fixPrefix
|
|
882
|
+
unit.fixPrefix = (_json$fixPrefix = json.fixPrefix) !== null && _json$fixPrefix !== void 0 ? _json$fixPrefix : fixPrefixDefault;
|
|
883
|
+
unit.skipAutomaticSimplification = (_json$skipSimp = json.skipSimp) !== null && _json$skipSimp !== void 0 ? _json$skipSimp : skipAutomaticSimplificationDefault;
|
|
880
884
|
return unit;
|
|
881
885
|
};
|
|
882
886
|
|
package/lib/esm/utils/number.js
CHANGED
|
@@ -13,7 +13,7 @@ export function isInteger(value) {
|
|
|
13
13
|
if (typeof value === 'boolean') {
|
|
14
14
|
return true;
|
|
15
15
|
}
|
|
16
|
-
return isFinite(value) ? value === Math.round(value) : false;
|
|
16
|
+
return Number.isFinite(value) ? value === Math.round(value) : false;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
/**
|
|
@@ -105,7 +105,7 @@ export var cbrt = Math.cbrt || function cbrt(x) {
|
|
|
105
105
|
if (negate) {
|
|
106
106
|
x = -x;
|
|
107
107
|
}
|
|
108
|
-
if (isFinite(x)) {
|
|
108
|
+
if (Number.isFinite(x)) {
|
|
109
109
|
result = Math.exp(Math.log(x) / 3);
|
|
110
110
|
// from https://en.wikipedia.org/wiki/Cube_root#Numerical_methods
|
|
111
111
|
result = (x / (result * result) + 2 * result) / 3;
|
|
@@ -381,7 +381,7 @@ export function splitNumber(value) {
|
|
|
381
381
|
* @param {number} [precision] Optional number of significant figures to return.
|
|
382
382
|
*/
|
|
383
383
|
export function toEngineering(value, precision) {
|
|
384
|
-
if (isNaN(value) || !isFinite(value)) {
|
|
384
|
+
if (isNaN(value) || !Number.isFinite(value)) {
|
|
385
385
|
return String(value);
|
|
386
386
|
}
|
|
387
387
|
var split = splitNumber(value);
|
|
@@ -430,7 +430,7 @@ export function toEngineering(value, precision) {
|
|
|
430
430
|
* decimal point. null by default.
|
|
431
431
|
*/
|
|
432
432
|
export function toFixed(value, precision) {
|
|
433
|
-
if (isNaN(value) || !isFinite(value)) {
|
|
433
|
+
if (isNaN(value) || !Number.isFinite(value)) {
|
|
434
434
|
return String(value);
|
|
435
435
|
}
|
|
436
436
|
var splitValue = splitNumber(value);
|
|
@@ -465,7 +465,7 @@ export function toFixed(value, precision) {
|
|
|
465
465
|
* is used.
|
|
466
466
|
*/
|
|
467
467
|
export function toExponential(value, precision) {
|
|
468
|
-
if (isNaN(value) || !isFinite(value)) {
|
|
468
|
+
if (isNaN(value) || !Number.isFinite(Number(value))) {
|
|
469
469
|
return String(value);
|
|
470
470
|
}
|
|
471
471
|
|
|
@@ -496,7 +496,7 @@ export function toExponential(value, precision) {
|
|
|
496
496
|
* @return {string}
|
|
497
497
|
*/
|
|
498
498
|
export function toPrecision(value, precision, options) {
|
|
499
|
-
if (isNaN(value) || !isFinite(value)) {
|
|
499
|
+
if (isNaN(value) || !Number.isFinite(value)) {
|
|
500
500
|
return String(value);
|
|
501
501
|
}
|
|
502
502
|
|
|
@@ -635,7 +635,7 @@ export function nearlyEqual(a, b) {
|
|
|
635
635
|
if (isNaN(a) || isNaN(b)) {
|
|
636
636
|
return false;
|
|
637
637
|
}
|
|
638
|
-
if (!isFinite(a) || !isFinite(b)) {
|
|
638
|
+
if (!Number.isFinite(a) || !Number.isFinite(b)) {
|
|
639
639
|
return a === b;
|
|
640
640
|
}
|
|
641
641
|
if (a === b) {
|
|
@@ -17,7 +17,19 @@ export function optimizeCallback(callback, array, name, isUnary) {
|
|
|
17
17
|
if (isUnary) {
|
|
18
18
|
numberOfArguments = 1;
|
|
19
19
|
} else {
|
|
20
|
-
var
|
|
20
|
+
var size = array.isMatrix ? array.size() : arraySize(array);
|
|
21
|
+
|
|
22
|
+
// Check the size of the last dimension to see if the array/matrix is empty
|
|
23
|
+
var isEmpty = size.length ? size[size.length - 1] === 0 : true;
|
|
24
|
+
if (isEmpty) {
|
|
25
|
+
// don't optimize callbacks for empty arrays/matrix, as they will never be called
|
|
26
|
+
// and in fact will throw an exception when we try to access the first element below
|
|
27
|
+
return {
|
|
28
|
+
isUnary,
|
|
29
|
+
fn: callback
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
var firstIndex = size.map(() => 0);
|
|
21
33
|
var firstValue = array.isMatrix ? array.get(firstIndex) : get(array, firstIndex);
|
|
22
34
|
numberOfArguments = _findNumberOfArgumentsTyped(callback, firstValue, firstIndex, array);
|
|
23
35
|
}
|
package/lib/esm/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mathjs",
|
|
3
|
-
"version": "15.
|
|
3
|
+
"version": "15.1.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",
|
|
@@ -36,16 +36,16 @@
|
|
|
36
36
|
"typed-function": "^4.2.1"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@babel/core": "7.28.
|
|
39
|
+
"@babel/core": "7.28.5",
|
|
40
40
|
"@babel/plugin-transform-object-assign": "7.27.1",
|
|
41
41
|
"@babel/plugin-transform-optional-catch-binding": "7.27.1",
|
|
42
|
-
"@babel/plugin-transform-runtime": "7.28.
|
|
43
|
-
"@babel/preset-env": "7.28.
|
|
42
|
+
"@babel/plugin-transform-runtime": "7.28.5",
|
|
43
|
+
"@babel/preset-env": "7.28.5",
|
|
44
44
|
"@babel/register": "7.28.3",
|
|
45
45
|
"@types/assert": "1.5.11",
|
|
46
46
|
"@types/mocha": "10.0.10",
|
|
47
|
-
"@typescript-eslint/eslint-plugin": "8.46.
|
|
48
|
-
"@typescript-eslint/parser": "8.46.
|
|
47
|
+
"@typescript-eslint/eslint-plugin": "8.46.3",
|
|
48
|
+
"@typescript-eslint/parser": "8.46.3",
|
|
49
49
|
"assert": "2.1.0",
|
|
50
50
|
"babel-loader": "10.0.0",
|
|
51
51
|
"c8": "10.1.3",
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"karma-webdriver-launcher": "1.0.8",
|
|
78
78
|
"karma-webpack": "5.0.1",
|
|
79
79
|
"mkdirp": "3.0.1",
|
|
80
|
-
"mocha": "11.7.
|
|
80
|
+
"mocha": "11.7.5",
|
|
81
81
|
"mocha-junit-reporter": "2.2.1",
|
|
82
82
|
"ndarray": "1.0.19",
|
|
83
83
|
"ndarray-determinant": "1.0.0",
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
"process": "0.11.10",
|
|
90
90
|
"sinon": "21.0.0",
|
|
91
91
|
"sylvester": "0.0.21",
|
|
92
|
-
"tinybench": "5.0
|
|
92
|
+
"tinybench": "5.1.0",
|
|
93
93
|
"ts-node": "10.9.2",
|
|
94
94
|
"typescript": "5.9.3",
|
|
95
95
|
"webpack": "5.102.1",
|