版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

15 строки
386 B

  1. function debug(logLevel, ...messages) {
  2. if (logLevel === 'debug')
  3. console.log(...messages);
  4. }
  5. function warn(logLevel, warning) {
  6. if (logLevel === 'debug' || logLevel === 'warn') {
  7. if (typeof process !== 'undefined' && process.emitWarning)
  8. process.emitWarning(warning);
  9. else
  10. console.warn(warning);
  11. }
  12. }
  13. export { debug, warn };