11 lines
242 B
JavaScript
11 lines
242 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 }; |