mirror of
https://github.com/nodejs/node.git
synced 2025-05-18 17:26:24 +00:00

PR-URL: https://github.com/nodejs/io.js/pull/2286 Reviewed-By: Roman Reiss <me@silverwind.io>
26 lines
548 B
JavaScript
26 lines
548 B
JavaScript
/**
|
|
* @fileoverview Handle logging for Eslint
|
|
* @author Gyandeep Singh
|
|
* @copyright 2015 Gyandeep Singh. All rights reserved.
|
|
*/
|
|
"use strict";
|
|
|
|
/* istanbul ignore next */
|
|
module.exports = {
|
|
/**
|
|
* Cover for console.log
|
|
* @returns {void}
|
|
*/
|
|
info: function() {
|
|
console.log.apply(console, Array.prototype.slice.call(arguments));
|
|
},
|
|
|
|
/**
|
|
* Cover for console.error
|
|
* @returns {void}
|
|
*/
|
|
error: function() {
|
|
console.error.apply(console, Array.prototype.slice.call(arguments));
|
|
}
|
|
};
|