warn.js 262 B

12345678
  1. /** @deprecated Use `warning` instead. This will be removed in next major version */
  2. export default function warn(msg) {
  3. if (process.env.NODE_ENV !== 'production') {
  4. if (typeof console !== 'undefined' && console.warn) {
  5. console.warn(msg);
  6. }
  7. }
  8. }