mirror of
https://github.com/r-freeman/portfolio.git
synced 2025-04-21 23:44:35 +00:00
Some checks failed
Build And Publish / BuildAndPublish (push) Failing after 1m37s
5 lines
138 B
TypeScript
5 lines
138 B
TypeScript
export function numberFormat(value: number) {
|
|
return new Intl.NumberFormat('en', {
|
|
notation: 'standard'
|
|
}).format(value)
|
|
} |