UNPKG

@etsoo/toolpad

Version:

Dashboard framework extention based on Toolpad Core

12 lines (11 loc) 243 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); } }