diagonal order form

This commit is contained in:
Tim Olson
2023-12-16 16:54:05 -04:00
parent 206fb21687
commit 9199d31e77
11 changed files with 143 additions and 93 deletions

View File

@@ -77,3 +77,8 @@ export function dateString(seconds) {
const date = new Date(seconds*1000)
return _dateFormat.format(date)
}
export function timestamp(date) {
return Math.round(date.getTime() / 1000)
}