cache.ts 210 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 import TTLCache from '@isaacs/ttlcache' export const selectorCache = new TTLCache({ ttl: 10*60, }) export const parsedHtmlCache = new TTLCache({ ttl: 10*60, }) export const findNodeCache = new WeakMap()