view client/src/lib/session.js @ 303:75e32633fb96

Makefile: Force rebuild of dependencies when 3rdpartylibs.sh changes.
author Sascha Wilde <wilde@intevation.de>
date Wed, 01 Aug 2018 13:37:48 +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 };