()
| 158 | } |
| 159 | |
| 160 | export function getTodayStartTimestamp() { |
| 161 | var now = new Date(); |
| 162 | now.setHours(0, 0, 0, 0); |
| 163 | return Math.floor(now.getTime() / 1000); |
| 164 | } |
| 165 | |
| 166 | export function timestamp2string(timestamp) { |
| 167 | let date = new Date(timestamp * 1000); |