MCPcopy
hub / github.com/MikeMcl/bignumber.js / Instance

Interface Instance

bignumber.d.ts:339–351  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

337 }
338
339 interface Instance {
340
341 /** The coefficient of the value of this BigNumber, an array of base 1e14 integer numbers, or null. */
342 readonly c: number[] | null;
343
344 /** The exponent of the value of this BigNumber, an integer number, -1000000000 to 1000000000, or null. */
345 readonly e: number | null;
346
347 /** The sign of the value of this BigNumber, -1, 1, or null. */
348 readonly s: number | null;
349
350 [key: string]: any;
351 }
352
353 type Constructor = typeof BigNumber;
354 type ModuloMode = 0 | 1 | 3 | 6 | 9;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…