astro-ghostcms/.pnpm-store/v3/files/bd/911a1007a8f09dacde6415fc277...

12 lines
232 B
Plaintext

import { yellow } from 'kolorist';
const warned = /* @__PURE__ */ new Set();
function warnOnce(msg) {
if (!warned.has(msg)) {
warned.add(msg);
console.warn(yellow(`[@iconify-loader] ${msg}`));
}
}
export { warnOnce };