https://git.jolheiser.com/tailwind-ctp-intellisense.git
1 2 3 4
export function naturalExpand(value: number, total?: number): string { let length = typeof total === 'number' ? total.toString().length : 8 return ('0'.repeat(length) + value).slice(-length) }