• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1import { Decimal } from "icu4x"
2export function toString(decimalF, decimalMagnitude) {
3
4    let decimal = Decimal.fromNumberWithLowerMagnitude(decimalF,decimalMagnitude);
5
6    let out = decimal.toString();
7
8
9    return out;
10}
11