export const price = (number, currency = 'تومان') => { return Intl.NumberFormat().format(number) + ' ' + currency; } export const seperator = (number) => { return new Intl.NumberFormat().format(number); }