export function leftPad(str, len, ch) { return new Array(len - str.length).fill(ch || ch === 0 ? ch : ' ').join('') + str }
const bespokePad = (x) => ('000000' + x).slice(-6)
[1]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe...
https://v8.dev/_img/docs/torque/build-process.svg