gitextract_ypy8eb9d/ ├── .gitattributes ├── .github/ │ └── workflows/ │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENCE.md ├── README.md ├── bignumber.d.ts ├── bignumber.js ├── build.js ├── dist/ │ ├── bignumber.cjs │ ├── bignumber.d.cts │ ├── bignumber.d.mts │ ├── bignumber.d.ts │ ├── bignumber.js │ └── bignumber.mjs ├── doc/ │ └── API.html ├── package.json ├── perf/ │ ├── README.md │ ├── bignumber-vs-bigdecimal.html │ ├── bigtime-OOM.js │ ├── bigtime.js │ └── lib/ │ ├── bigdecimal_GWT/ │ │ ├── BigDecTest.java │ │ ├── LICENCE.txt │ │ ├── bigdecimal.js │ │ └── bugs.js │ └── bigdecimal_ICU4J/ │ ├── BigDecimal-all-last.js │ └── LICENCE.txt └── test/ ├── console-errors.html ├── methods/ │ ├── BigNumber.js │ ├── absoluteValue.js │ ├── clone.js │ ├── comparedTo.js │ ├── config.js │ ├── decimalPlaces.js │ ├── dividedBy.js │ ├── dividedToIntegerBy.js │ ├── exponentiatedBy.js │ ├── integerValue.js │ ├── isBigNumber.js │ ├── isMethods.js │ ├── minmax.js │ ├── minus.js │ ├── modulo.js │ ├── multipliedBy.js │ ├── negated.js │ ├── plus.js │ ├── precision.js │ ├── random.js │ ├── shiftedBy.js │ ├── squareRoot.js │ ├── sum.js │ ├── toExponential.js │ ├── toFixed.js │ ├── toFormat.js │ ├── toFraction.js │ ├── toNumber.js │ ├── toObject.js │ ├── toPrecision.js │ └── toString.js ├── methods.html ├── test.html ├── test.js ├── tester.js └── typescript/ ├── README.md ├── test_default_import.ts ├── test_global.ts ├── test_named_import.ts ├── test_require.ts ├── tsconfig.base.json ├── tsconfig.cjs.json ├── tsconfig.esm.json └── tsconfig.global.json