mathjs 13.0.1 → 13.0.2

Sign up to get free protection for your applications and to get access to all the features.
package/lib/cjs/header.js CHANGED
@@ -6,8 +6,8 @@
6
6
  * It features real and complex numbers, units, matrices, a large set of
7
7
  * mathematical functions, and a flexible expression parser.
8
8
  *
9
- * @version 13.0.1
10
- * @date 2024-06-28
9
+ * @version 13.0.2
10
+ * @date 2024-07-04
11
11
  *
12
12
  * @license
13
13
  * Copyright (C) 2013-2024 Jos de Jong <wjosdejong@gmail.com>
@@ -4,6 +4,6 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.version = void 0;
7
- const version = exports.version = '13.0.1';
7
+ const version = exports.version = '13.0.2';
8
8
  // Note: This file is automatically generated when building math.js.
9
9
  // Changes made in this file will be overwritten.
@@ -1,3 +1,3 @@
1
- export var version = '13.0.1';
1
+ export var version = '13.0.2';
2
2
  // Note: This file is automatically generated when building math.js.
3
3
  // Changes made in this file will be overwritten.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mathjs",
3
- "version": "13.0.1",
3
+ "version": "13.0.2",
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",
@@ -44,8 +44,8 @@
44
44
  "@babel/register": "7.24.6",
45
45
  "@types/assert": "1.5.10",
46
46
  "@types/mocha": "10.0.7",
47
- "@typescript-eslint/eslint-plugin": "7.14.1",
48
- "@typescript-eslint/parser": "7.14.1",
47
+ "@typescript-eslint/eslint-plugin": "7.15.0",
48
+ "@typescript-eslint/parser": "7.15.0",
49
49
  "assert": "2.1.0",
50
50
  "babel-loader": "9.1.3",
51
51
  "benchmark": "2.1.4",
@@ -61,7 +61,7 @@
61
61
  "eslint-plugin-mocha": "10.4.3",
62
62
  "eslint-plugin-n": "16.6.2",
63
63
  "eslint-plugin-prettier": "5.1.3",
64
- "eslint-plugin-promise": "6.2.0",
64
+ "eslint-plugin-promise": "6.4.0",
65
65
  "expect-type": "0.19.0",
66
66
  "expr-eval": "2.0.2",
67
67
  "fancy-log": "2.0.0",
@@ -77,7 +77,7 @@
77
77
  "karma-mocha-reporter": "2.2.5",
78
78
  "karma-webpack": "5.0.1",
79
79
  "mkdirp": "3.0.1",
80
- "mocha": "10.5.2",
80
+ "mocha": "10.6.0",
81
81
  "mocha-junit-reporter": "2.2.1",
82
82
  "ndarray": "1.0.19",
83
83
  "ndarray-determinant": "1.0.0",
@@ -91,7 +91,7 @@
91
91
  "sinon": "18.0.0",
92
92
  "sylvester": "0.0.21",
93
93
  "ts-node": "10.9.2",
94
- "typescript": "5.5.2",
94
+ "typescript": "5.5.3",
95
95
  "webpack": "5.92.1",
96
96
  "zeros": "1.0.0"
97
97
  },
package/types/index.d.ts CHANGED
@@ -2866,7 +2866,7 @@ export interface MathJsInstance extends MathJsFactory {
2866
2866
  */
2867
2867
  quantileSeq<T extends MathScalarType>(
2868
2868
  A: T[] | T[][],
2869
- prob: number | BigNumber | MathArray,
2869
+ prob: number | BigNumber,
2870
2870
  sorted?: boolean
2871
2871
  ): T
2872
2872
  /**