Log.js 876 B

12345678910111213141516171819202122232425262728293031323334353637
  1. const chalk = require('chalk');
  2. const { dump } = require('dumper.js');
  3. class Log {
  4. static info(args) {
  5. if (this.checkIfArrayOrObject(args)) dump(args);
  6. else console.log(args); // eslint-disable-line no-console
  7. }
  8. static success(args) {
  9. if (this.checkIfArrayOrObject(args)) dump(args);
  10. else console.log(chalk.green(args)); // eslint-disable-line no-console
  11. }
  12. static warn(args) {
  13. if (this.checkIfArrayOrObject(args)) dump(args);
  14. else console.log(chalk.yellow(args)); // eslint-disable-line no-console
  15. }
  16. static error(args) {
  17. if (this.checkIfArrayOrObject(args)) dump(args);
  18. else console.log(chalk.red(args)); // eslint-disable-line no-console
  19. }
  20. /*
  21. static dump(args) {
  22. dump(args);
  23. }
  24. */
  25. static checkIfArrayOrObject(thing) {
  26. if (typeof thing === typeof [] || typeof thing === typeof {}) return true;
  27. return false;
  28. }
  29. }
  30. module.exports = Log;