coast-fire-calculator-cli
Version:
Interactive CLI to estimate your Coast FIRE age—enter your savings, investments, and goals to see when you can stop contributing and still reach financial independence.
12 lines (10 loc) • 333 B
JavaScript
export const sleep = (ms = 2000) => new Promise((resolve) => setTimeout(resolve, ms));
// Function to format currency
export const formatCurrency = (amount) => {
return new Intl.NumberFormat('zh-TW', {
style: 'currency',
currency: 'TWD',
minimumFractionDigits: 0,
maximumFractionDigits: 0,
}).format(amount);
};