10 lines
241 B
JavaScript
10 lines
241 B
JavaScript
|
|
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 };
|