breezy-desktop/gnome/src/time.js

11 lines
246 B
JavaScript

export function getEpochSec() {
return toSec(Date.now());
}
export function toSec(milliseconds) {
return Math.floor(milliseconds / 1000);
}
export function isValidKeepAlive(dateSec) {
return Math.abs(getEpochSec() - dateSec) <= 1;
}