powiaina_num.js 0.1.4 → 0.1.5

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/PowiainaNum.d.ts +4 -0
  2. package/package.json +1 -1
package/PowiainaNum.d.ts CHANGED
@@ -205,6 +205,10 @@ export default class PowiainaNum {
205
205
  max(other: PowiainaNumSource): PowiainaNum;
206
206
  static maximum(x: PowiainaNumSource, other: PowiainaNumSource): PowiainaNum;
207
207
  static max(x: PowiainaNumSource, other: PowiainaNumSource): PowiainaNum;
208
+
209
+ clone(): PowiainaNum;
210
+
211
+
208
212
  array: Array<number|Array<number>>;
209
213
  layer: number;
210
214
  sign: 1|0|-1;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "powiaina_num.js",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "A JavaScript library that handles arithmetic for numbers as large as {10,9e15,1,1,1,2}.",
5
5
  "main": "PowiainaNum.js",
6
6
  "module": "PowiainaNum.esm.js",