e-lado
Version:
[](https://circleci.com/gh/sharetribe/sharetribe/tree/master) [](https://gemnasium.com/sharetribe/shar
29 lines (23 loc) • 506 B
JavaScript
/**
* @fileoverview Handle logging for ESLint
* @author Gyandeep Singh
*/
;
/* 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));
}
};