UNPKG

@ztl-uwu/nuxt-content

Version:

Write your content inside your Nuxt app

8 lines (7 loc) 261 B
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)); }; }