tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

Decimal.mjs (207B)


      1 import { Decimal } from "icu4x"
      2 export function toString(decimalF) {
      3    
      4    let decimal = Decimal.fromNumberWithRoundTripPrecision(decimalF);
      5    
      6    let out = decimal.toString();
      7    
      8 
      9    return out;
     10 }