UNPKG

phx-react

Version:

PHX REACT

16 lines 416 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getSession = getSession; exports.setSession = setSession; exports.clearSession = clearSession; let sessionCache = null; function getSession() { return sessionCache; } function setSession(newSession) { sessionCache = newSession; } function clearSession() { sessionCache = null; } //# sourceMappingURL=sessionStore.js.map