view client/src/lib/session.js @ 457:62ffb6c8a42e

Remove unnecessary schema qualifiers
author Tom Gottfried <tom@intevation.de>
date Wed, 22 Aug 2018 12:37:34 +0200
parents 4bf2173748f3
children 27502291e564
line wrap: on
line source

function sessionStillActive(expiresFromPastSession) {
  if (!expiresFromPastSession) return false;
  const now = Date.now();
  const stillActive = now < expiresFromPastSession;
  return stillActive;
}

function toMillisFromString(timestring) {
  return timestring * 1000;
}

export { sessionStillActive, toMillisFromString };