UNPKG

335 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3const currentStates = new Set();
4function addSessionState(state) {
5 currentStates.add(state);
6}
7exports.addSessionState = addSessionState;
8function hasSessionState(state) {
9 return currentStates.has(state);
10}
11exports.hasSessionState = hasSessionState;