/**
* @description it will format numbers to string if its bigger than 1000 with a K, million M and so on.
* @example nFormatter(1000) => "1K"
*/exportdefaultfunctionnFormatter(num) {
//@ts-ignorereturnIntl.NumberFormat('en', { notation: 'compact' }).format(num);
}