portfolio/lib/numberFormat.ts
Ryan Freeman 415fc84251
Some checks failed
Build And Publish / BuildAndPublish (push) Failing after 1m37s
Change page views notation to standard
2025-02-23 21:05:59 +00:00

5 lines
138 B
TypeScript

export function numberFormat(value: number) {
return new Intl.NumberFormat('en', {
notation: 'standard'
}).format(value)
}