tobemaster56 / draft

记录开发过程中遇到的问题
MIT License
5 stars 0 forks source link

组件库的基础设施 #82

Open tobemaster56 opened 2 years ago

tobemaster56 commented 2 years ago

devwarning

// devWarning
function warning(valid, message) {
  // Support uglify
  if (process.env.NODE_ENV !== 'production' && !valid && console !== undefined) {
    console.error("Warning: ".concat(message));
  }
}