bbuddy-ui/src/utils/expert.ts

4 lines
192 B
TypeScript

export const getDuration = (locale: string, value?: any): string => `${value || 0}${locale === 'ru' ? 'мин' : 'min'}`;
export const getPrice = (value?: any): string => `${value || 0}`;