helpers.js
1/**
2 * μ νΈλ¦¬ν° ν¨μ
3 */
4
5export function formatDate(date) {
6 return new Intl.DateTimeFormat('ko-KR', {
7 year: 'numeric',
8 month: 'long',
9 day: 'numeric',
10 hour: '2-digit',
11 minute: '2-digit',
12 }).format(date);
13}
14
15// μ¬μ©λμ§ μλ ν¨μ (Tree Shaking λμ)
16export function unusedFunction() {
17 console.log('μ΄ ν¨μλ μ¬μ©λμ§ μμ νλ‘λμ
λΉλμμ μ κ±°λ©λλ€.');
18}