mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 19:19:30 +08:00
11 lines
232 B
Text
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 };
|