UNPKG

next-session

Version:

Simple promise-based session for Next.js

12 lines (11 loc) 371 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isNew = exports.isDestroyed = exports.isTouched = void 0; const isTouched = Symbol("session.isTouched"); exports.isTouched = isTouched; const isDestroyed = Symbol("session.isDestroyed"); exports.isDestroyed = isDestroyed; const isNew = Symbol("session.isNew"); exports.isNew = isNew;