UNPKG

@iconify/utils

Version:

Common functions for working with Iconify icon sets used by various packages.

12 lines (9 loc) 232 B
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 };