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.

17 lines (15 loc) 372 B
import ICookie from '../ICookie.js'; /** * Cookie expire utility. */ export default class CookieExpireUtility { /** * Returns "true" if cookie has expired. * * @param cookie Cookie. * @returns "true" if cookie has expired. */ public static hasExpired(cookie: ICookie): boolean | null { return cookie.expires && cookie.expires.getTime() < Date.now(); } }