14 lines
314 B
JavaScript
14 lines
314 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
function log(...params) {
|
|
console.log(...params);
|
|
}
|
|
function error(...params) {
|
|
console.error(...params);
|
|
}
|
|
function warn(...params) {
|
|
console.warn(...params);
|
|
}
|
|
const logger = { log, error, warn };
|
|
exports.default = logger;
|