@danielsimonjr/mathts-compat 0.3.30 → 0.3.32

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.
Files changed (2) hide show
  1. package/dist/index.js +13 -7
  2. package/package.json +5 -5
package/dist/index.js CHANGED
@@ -8,7 +8,13 @@ import {
8
8
  isComplex,
9
9
  isFraction,
10
10
  isBigNumber,
11
- isNumber
11
+ isNumber,
12
+ LN2 as CORE_LN2,
13
+ LN10 as CORE_LN10,
14
+ LOG2E as CORE_LOG2E,
15
+ LOG10E as CORE_LOG10E,
16
+ SQRT2 as CORE_SQRT2,
17
+ SQRT1_2 as CORE_SQRT1_2
12
18
  } from "@danielsimonjr/mathts-core";
13
19
  import {
14
20
  add as _add,
@@ -297,12 +303,12 @@ var pi = Math.PI;
297
303
  var e = Math.E;
298
304
  var phi = (1 + Math.sqrt(5)) / 2;
299
305
  var tau = 2 * Math.PI;
300
- var LN2 = Math.LN2;
301
- var LN10 = Math.LN10;
302
- var LOG2E = Math.LOG2E;
303
- var LOG10E = Math.LOG10E;
304
- var SQRT2 = Math.SQRT2;
305
- var SQRT1_2 = Math.SQRT1_2;
306
+ var LN2 = CORE_LN2;
307
+ var LN10 = CORE_LN10;
308
+ var LOG2E = CORE_LOG2E;
309
+ var LOG10E = CORE_LOG10E;
310
+ var SQRT2 = CORE_SQRT2;
311
+ var SQRT1_2 = CORE_SQRT1_2;
306
312
  var Infinity_ = Infinity;
307
313
  var NaN_ = NaN;
308
314
  var shims = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@danielsimonjr/mathts-compat",
3
- "version": "0.3.30",
3
+ "version": "0.3.32",
4
4
  "description": "mathjs compatibility layer for MathTS",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -24,10 +24,10 @@
24
24
  "build:prod": "tsup src/index.ts --format esm --dts --clean --minify --treeshake"
25
25
  },
26
26
  "dependencies": {
27
- "@danielsimonjr/mathts-core": "^0.10.0",
28
- "@danielsimonjr/mathts-functions": "^0.42.0",
29
- "@danielsimonjr/mathts-matrix": "^0.6.0",
30
- "@danielsimonjr/mathts-parallel": "^0.6.0"
27
+ "@danielsimonjr/mathts-core": "^0.12.0",
28
+ "@danielsimonjr/mathts-functions": "^0.43.1",
29
+ "@danielsimonjr/mathts-matrix": "^0.6.2",
30
+ "@danielsimonjr/mathts-parallel": "^0.6.2"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@types/node": "^25.5.2",