UNPKG

exactnumber

Version:

Arbitrary-precision decimals. Enables making math calculations with rational numbers, without precision loss.

7 lines (6 loc) 191 B
import { FixedNumber } from '../../FixedNumber'; export declare class ConstantCache { private fn; constructor(fn: (digits: number) => string); get(digits: number): FixedNumber; }