UNPKG

@t2ee/cookieman

Version:
14 lines 320 B
"use strict"; class Cookie { constructor() { this.expires = new Date(); this.secure = false; this.httpOnly = false; } clear() { this.key = null; } } Object.defineProperty(exports, "__esModule", { value: true }); exports.default = Cookie; //# sourceMappingURL=Cookie.js.map