helperLog.js 108 B

12345
  1. function helperLog (type, msg) {
  2. return (console[type] || console.log)(msg)
  3. }
  4. module.exports = helperLog