UNPKG

ng2-idle

Version:

A module for responding to idle users in Angular2 applications.

20 lines (18 loc) 576 B
/** * ng2-idle - A module for responding to idle users in Angular2 applications. # @author Mike Grabski <me@mikegrabski.com> (http://mikegrabski.com/) * @version v1.0.0-alpha.18 * @link https://github.com/HackedByChinese/ng2-idle.git#readme * @license MIT */ import { IdleExpiry } from '../idleexpiry'; export class MockExpiry extends IdleExpiry { last(value) { if (value !== void 0) { this.lastDate = value; } return this.lastDate; } now() { return this.mockNow || new Date(); } } //# sourceMappingURL=mockexpiry.js.map