Write logic usable by both the RN app and a web dApp.
Write `formatTokenAmount(raw, decimals, precision)` where `raw` is a BigInt of the smallest unit, returning a decimal string truncated to `precision` fractional digits.
Required in your answer: padStart(
Transpiled, then run in a sandbox
function formatTokenAmount(raw, decimals, precision) {
// TODO
}