in lib/filters/snippets.js [29:41]
async function fetchData(url) {
try {
return CacheAsset(url, {
duration: "1d",
type: "text",
directory: ".cache"
});
} catch(e) {
console.log("error fetching data for " + url);
console.log(e);
return "";
}
}