UNPKG

@discostudioteam/react-code-blocks

Version:

Modified rajinwonderland's modification of Atlaskit's Code Block!

19 lines (13 loc) 474 B
const warningStack: { [key: string]: boolean } = {}; const useWarning = (message: string, component?: string) => { const tag = component ? ` [${component}]` : ' '; const log = `[Zeit UI]${tag}: ${message}`; if (typeof console === 'undefined') return; if (warningStack[log]) return; warningStack[log] = true; if (process.env.NODE_ENV !== 'production') { return console.error(log); } console.warn(log); }; export default useWarning;