()
| 249 | } |
| 250 | |
| 251 | function getTodayFlag() { |
| 252 | const now = new Date(); |
| 253 | const year = now.getFullYear(); |
| 254 | const month = String(now.getMonth() + 1).padStart(2, '0'); |
| 255 | const day = String(now.getDate()).padStart(2, '0'); |
| 256 | return `${year}-${month}-${day}`; |
| 257 | } |
| 258 | |
| 259 | function argsList(data) { |
| 260 | return Array.from( |