mirror of
https://github.com/nodejs/node.git
synced 2025-05-22 15:55:37 +00:00

PR-URL: https://github.com/nodejs/node/pull/27670 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Refael Ackermann (רפאל פלחי) <refack@gmail.com> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com>
29 lines
430 B
JavaScript
29 lines
430 B
JavaScript
/**
|
|
* @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(...args) {
|
|
console.log(...args);
|
|
},
|
|
|
|
/**
|
|
* Cover for console.error
|
|
* @returns {void}
|
|
*/
|
|
error(...args) {
|
|
console.error(...args);
|
|
}
|
|
};
|