mathjs 13.2.2 → 13.2.3
Sign up to get free protection for your applications and to get access to all the features.
- package/HISTORY.md +8 -0
- 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/function/matrix/filter.js +7 -0
- package/lib/cjs/function/matrix/forEach.js +7 -0
- package/lib/cjs/header.js +2 -2
- package/lib/cjs/utils/object.js +4 -0
- package/lib/cjs/version.js +1 -1
- package/lib/esm/function/matrix/filter.js +7 -0
- package/lib/esm/function/matrix/forEach.js +7 -0
- package/lib/esm/utils/object.js +4 -0
- package/lib/esm/version.js +1 -1
- package/package.json +2 -2
- package/types/index.d.ts +5 -7
package/HISTORY.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# History
|
2
2
|
|
3
|
+
# 2024-11-20, 13.2.3
|
4
|
+
|
5
|
+
- Fix: #3260 improve type definitions and documentation on the callback
|
6
|
+
indices of `map`, `filter`, and `forEach`.
|
7
|
+
- Fix: #3323 support functions in function `clone`.
|
8
|
+
- Docs: fix a broken link in the documentation (#3316).
|
9
|
+
Thanks @emmanuel-ferdman.
|
10
|
+
|
3
11
|
# 2024-11-13, 13.2.2
|
4
12
|
|
5
13
|
- Fix: #1455 implicit multiplication of a fraction with unit `in` is incorrect
|