6 lines
81 B
JavaScript
6 lines
81 B
JavaScript
export class Logger {
|
|
static info() {
|
|
const [message, data] = arguments;
|
|
}
|
|
}
|