mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 17:47:24 +00:00
10 lines
376 B
JavaScript
10 lines
376 B
JavaScript
// @flow
|
|
|
|
export function formatNumberWithCommas(num: number, numberOfDigits?: number): string {
|
|
return num.toLocaleString('en', { minimumFractionDigits: numberOfDigits !== undefined ? numberOfDigits : 8 });
|
|
}
|
|
|
|
export function isTrulyANumber(num: number) {
|
|
// typeof NaN = 'number' but NaN !== NaN
|
|
return typeof num === 'number' && num === num; // eslint-disable-line
|
|
}
|