選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

warn.js 177 B

1234567
  1. export default function warn(msg) {
  2. if (process.env.NODE_ENV !== 'production') {
  3. if (typeof console !== 'undefined' && console.warn) {
  4. console.warn(msg);
  5. }
  6. }
  7. }