mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-23 00:59:13 +08:00
15 lines
331 B
Text
15 lines
331 B
Text
'use strict';
|
|
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
|
const kolorist = require('kolorist');
|
|
|
|
const warned = /* @__PURE__ */ new Set();
|
|
function warnOnce(msg) {
|
|
if (!warned.has(msg)) {
|
|
warned.add(msg);
|
|
console.warn(kolorist.yellow(`[@iconify-loader] ${msg}`));
|
|
}
|
|
}
|
|
|
|
exports.warnOnce = warnOnce;
|