export function makeIgnored(ignores) { const rxAll = ["/\\.", "/-", ...ignores.filter((p) => p)].map((p) => new RegExp(p)); return function isIgnored(key) { const path = "/" + key.replace(/:/g, "/"); return rxAll.some((rx) => rx.test(path)); }; }