| 22 | const iconDataCache = {}; |
| 23 | /** @return {string | Promise<string>} */ |
| 24 | export const getImageData = url => iconCache[url] || (iconCache[url] = loadIcon(url)); |
| 25 | // Firefox Android does not support such APIs, use noop |
| 26 | const browserAction = (() => { |
| 27 | // Using `chrome` namespace in order to skip our browser.js polyfill in Chrome |
no test coverage detected