UNPKG

happy-dom

Version:

Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.

18 lines 481 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * Cookie expire utility. */ class CookieExpireUtility { /** * Returns "true" if cookie has expired. * * @param cookie Cookie. * @returns "true" if cookie has expired. */ static hasExpired(cookie) { return cookie.expires && cookie.expires.getTime() < Date.now(); } } exports.default = CookieExpireUtility; //# sourceMappingURL=CookieExpireUtility.cjs.map