import React from 'react'
import { FormattedNumber } from 'react-intl'
export const shortNumberFormat = (number) => {
if (isNaN(number)) {
return
}
if (number < 1000) {
try {
return ().props.value
} catch (error) {
return
}
}
const isMillions = number > 999999
const isThousands = number > 999 && !isMillions
const divisor = isMillions ? 1000000 : isThousands ? 1000 : 1
const suffix = isMillions ? 'm' : isThousands ? 'k' : ''
return (
{suffix}
)
}
export const getRandomInt = (min, max) => {
min = Math.ceil(min)
max = Math.floor(max)
return Math.floor(Math.random() * (max - min + 1)) + min
}