mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-07-13 03:36:07 +09:00
remove timer and simon
This commit is contained in:
+28
@@ -0,0 +1,28 @@
|
||||
/**
|
||||
* @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() {
|
||||
console.log.apply(console, arguments);
|
||||
},
|
||||
|
||||
/**
|
||||
* Cover for console.error
|
||||
* @returns {void}
|
||||
*/
|
||||
error() {
|
||||
console.error.apply(console, arguments);
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user