(timestamp)
| 3840 | } |
| 3841 | |
| 3842 | function formatAutoRunScheduleTime(timestamp) { |
| 3843 | return new Date(timestamp).toLocaleString('zh-CN', { |
| 3844 | hour12: false, |
| 3845 | timeZone: DISPLAY_TIMEZONE, |
| 3846 | month: '2-digit', |
| 3847 | day: '2-digit', |
| 3848 | hour: '2-digit', |
| 3849 | minute: '2-digit', |
| 3850 | second: '2-digit', |
| 3851 | }); |
| 3852 | } |
| 3853 | |
| 3854 | async function setAutoRunDelayEnabledState(enabled) { |
| 3855 | const normalized = Boolean(enabled); |
no outgoing calls
no test coverage detected