UNPKG

@stencil/react-output-target

Version:

React output target for @stencil/core components.

15 lines (12 loc) 349 B
export const isDevMode = () => { return process && process.env && process.env.NODE_ENV === 'development'; }; const warnings: { [key: string]: boolean } = {}; export const deprecationWarning = (key: string, message: string) => { if (isDevMode()) { if (!warnings[key]) { console.warn(message); warnings[key] = true; } } };