notonthehighstreet/breadboard

View on GitHub
examples/kitchen/app/logger.js

Summary

Maintainability
A
0 mins
Test Coverage
/*eslint no-console: 0*/
module.exports = () => {
  return (...args) => {
    console.log.apply(console, args);
  };
};