UNPKG

ember-material-icons

Version:

Google Material icons for your ember-cli app

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);