Skip to content

Commit

Permalink
fix: Console
Browse files Browse the repository at this point in the history
Update Console.mjs
  • Loading branch information
VirgilClyne committed Nov 28, 2024
1 parent 1e43b73 commit 335bd01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions polyfill/Console.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { $app } from "../lib/app.mjs";

export default class Console {
export class Console {
static #counts = new Map([]);
static #groups = [];
static #times = new Map([]);
Expand Down Expand Up @@ -84,7 +84,7 @@ export default class Console {
}
return log;
});
Console.#groups.forEach((group, index) => {
Console.#groups.forEach(group => {
msg = msg.map(log => ` ${log}`);
msg.unshift(`▼ ${group}:`);
});
Expand Down

0 comments on commit 335bd01

Please sign in to comment.