mirror of
https://git.proxmox.com/git/pve-eslint
synced 2025-10-04 20:48:29 +00:00

includes a (minimal) working wrapper Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
31 lines
528 B
JavaScript
31 lines
528 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
|
|
* @param {...any} args The elements to log.
|
|
* @returns {void}
|
|
*/
|
|
info(...args) {
|
|
console.log(...args);
|
|
},
|
|
|
|
/**
|
|
* Cover for console.error
|
|
* @param {...any} args The elements to log.
|
|
* @returns {void}
|
|
*/
|
|
error(...args) {
|
|
console.error(...args);
|
|
}
|
|
};
|