* Returns whether key is cached. * * @param {number|string} key * @return {boolean}
(key)
| 31 | * @return {boolean} |
| 32 | */ |
| 33 | has(key) { |
| 34 | return !!this.cache_[key]; |
| 35 | } |
| 36 | |
| 37 | /** |
| 38 | * @param {number|string} key |
no outgoing calls
no test coverage detected