Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
418 Bytes
// Convert time to hours and minutes
export const calcTime = (time) => {
const hours = Math.floor(time / 60);
const mins = time % 60;
return `${hours}h ${mins}m`;
}
// Convert a number to money formatting
export const convertMoney = (money) => {
var formatter = new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'USD',
minimumFractionDigits: 0,
});
return formatter.format(money);
}