Urara-Blog/node_modules/.pnpm-store/v3/files/bd/911a1007a8f09dacde6415fc277ff9eb80ea601f7c3c64dc90d846892d583568f7a1a739b17007779a1c19483e5ec63075ca46289ccb6b19a1ea5c215e91e1
2022-08-14 01:14:53 +08:00

11 lines
232 B
Text

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 };