/** * Remove padding `0`s from the start of a string. * * Sig: `(s: string) => string` * @private */ export type _RemoveStrPaddingZeroes = S extends "0" ? S : S extends `0${infer R}` ? _RemoveStrPaddingZeroes : S;