export function getEpochSec() { return toSec(Date.now()); } export function toSec(milliseconds) { return Math.floor(milliseconds / 1000); }