UNPKG

@toolpad/utils

Version:

Shared utilities used by Toolpad packages.

12 lines (11 loc) 231 B
const history = new Set(); /** * Warns only once for a specific message. * @param msg The message to warn. */ export default function warnOnce(msg) { if (!history.has(msg)) { history.add(msg); console.warn(msg); } }