UNPKG

ember-app-scheduler

Version:

Ember addon to schedule work at different phases of app life cycle.

12 lines (8 loc) 205 B
'use strict'; function CacheEntry(isCached, key, value) { this.isCached = isCached; this.key = key; this.value = value; } module.exports = CacheEntry; module.exports.MISS = new CacheEntry(false);