UNPKG

@etsoo/toolpad

Version:

Dashboard framework extention based on Toolpad Core

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