10 lines
241 B
JavaScript
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
import { styleText } from "node:util";
const warned = /* @__PURE__ */ new Set();
function warnOnce(msg) {
if (!warned.has(msg)) {
warned.add(msg);
console.warn(styleText("yellow", `[@iconify-loader] ${msg}`));
}
}
export { warnOnce };