UNPKG

@paycargo/js-react

Version:

Paycargo Wrapper component our Express Payment Solutions

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