cache.ts 253 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 import NodeCache from 'node-cache' export const selectorCache = new NodeCache({ stdTTL: 10*60, useClones: false, }) export const parsedHtmlCache = new NodeCache({ stdTTL: 10*60, useClones: false, }) export const findNodeCache = new WeakMap()