UNPKG

e-lado

Version:

[![CircleCI](https://circleci.com/gh/sharetribe/sharetribe/tree/master.svg?style=svg)](https://circleci.com/gh/sharetribe/sharetribe/tree/master) [![Dependency Status](https://gemnasium.com/sharetribe/sharetribe.png)](https://gemnasium.com/sharetribe/shar

29 lines (23 loc) 506 B
/** * @fileoverview Handle logging for ESLint * @author Gyandeep Singh */ "use strict"; /* eslint no-console: "off" */ /* istanbul ignore next */ module.exports = { /** * Cover for console.log * @returns {void} */ info() { console.log.apply(console, Array.prototype.slice.call(arguments)); }, /** * Cover for console.error * @returns {void} */ error() { console.error.apply(console, Array.prototype.slice.call(arguments)); } };