(elems, overflowing, x)
| 617 | }, 1 * 1000); |
| 618 | } |
| 619 | function setCache(elems, overflowing, x) { |
| 620 | let cache = x ? cacheX : cacheY; |
| 621 | for (let i = elems.length; i--; ) cache[uniqueID(elems[i])] = overflowing; |
| 622 | return overflowing; |
| 623 | } |
| 624 | function getCache(el, x) { |
| 625 | return (x ? cacheX : cacheY)[uniqueID(el)]; |
| 626 | } |
no outgoing calls
no test coverage detected