mathjs 9.4.3 → 9.4.4

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 CHANGED
@@ -1,5 +1,18 @@
1
1
  # History
2
2
 
3
+ # 2021-07-07, version 9.4.4
4
+
5
+ - Fixed `ArrayNode.toTex()`: remove the row delimiter on the last row,
6
+ see #2267. Thanks @davidtranhq.
7
+ - Fix #2269: `intersect` not returning `null` for matrix input. Thanks @m93a.
8
+ - Fix #2245: mathjs not working in IE11 anymore due to a missing polyfill for
9
+ `Symbol`. The browser bundle now includes the necessary polyfills (it is
10
+ larger now because of that, see also #2266). Thanks @m93a.
11
+ - Update dependencies (`complex.js@2.0.15`, `decimal.js@10.3.1`)
12
+ - Drop official support for node.js 10, which has reached end of life.
13
+ See #2258.
14
+
15
+
3
16
  # 2021-06-23, version 9.4.3
4
17
 
5
18
  - Fix #2222: mathjs polluting the `Decimal` prototype. Thanks @m93a.
@@ -221,4 +221,4 @@ Some care is taken to mutate the same object that is passed into mathjs, so they
221
221
 
222
222
  For less reliance on this blacklist, scope can also be a `Map`, which allows mathjs expressions to define variables and functions of any name.
223
223
 
224
- For more, see [examples of custom scopes][../../examples/advanced/custom_scope_objects.js.html].
224
+ For more, see [examples of custom scopes](../../examples/advanced/custom_scope_objects.js).
@@ -24,7 +24,7 @@ Parameter | Type | Description
24
24
  `w` | Array | Matrix | Co-ordinates of first end-point of first line
25
25
  `x` | Array | Matrix | Co-ordinates of second end-point of first line
26
26
  `y` | Array | Matrix | Co-ordinates of first end-point of second line OR Co-efficients of the plane's equation
27
- `z` | Array | Matrix | Co-ordinates of second end-point of second line OR null if the calculation is for line and plane
27
+ `z` | Array | Matrix | Co-ordinates of second end-point of second line OR undefined if the calculation is for line and plane
28
28
 
29
29
  ### Returns
30
30