This document describes how to use FUSE OverlayFS to link your global Firefox installation with the PWAsForFirefox runtime.
- Your OS uses systemd.
- Firefox is installed (without Snap or Flatpak).
/** | |
* For a finite normal 64-bit float `f`, extracts integers `sgn`, | |
* `exponent`, and `mantissa` such that: | |
* | |
* - `sgn` is -1 or +1 | |
* - `exponent` is between -1023 and 1024, inclusive | |
* - `mantissa` is between 0 and 2^51 - 1, inclusive | |
* - the number given by `f` equals `sgn * 2^exponent * (1 + mantissa / 2^52)` | |
* | |
* The results are all bigints within the range of safe integers for |