Urara-Blog/node_modules/.pnpm-store/v3/files/79/cfdecd0436e5be109222b9e1728d6e2f6f3f98ba57e06c0bbb26628778d199342f331c4df6c6e38121d8790528b6a76bff98d6a5209424079a0a7815d6c100
2022-08-14 01:14:53 +08:00

30 lines
544 B
Text

/**
* @fileoverview Handle logging for ESLint
* @author Gyandeep Singh
*/
"use strict";
/* eslint no-console: "off" -- Logging util */
/* 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);
}
};