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

18 строки
421 B

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