hadean-old/src/Util.ts

7 lines
192 B
TypeScript
Raw Normal View History

2021-07-20 16:37:38 -04:00
export function osrsNumber(x: number): string {
if(x < 10_000) return '' + x;
else if (x < 10_000_000) return Math.floor(x / 1000) + 'K';
else return Math.floor(x / 1_000_000) + 'M';
}