mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
cae71ed841
This implementation of groupCollapsed is intentionally different from the spec defined by whatwg. See the conversation in #1355 and #1363.
15 lines
279 B
TypeScript
15 lines
279 B
TypeScript
console.group("1");
|
|
console.log("2");
|
|
console.group("3");
|
|
console.log("4");
|
|
console.groupEnd();
|
|
console.groupEnd();
|
|
|
|
console.groupCollapsed("5");
|
|
console.log("6");
|
|
console.group("7");
|
|
console.log("8");
|
|
console.groupEnd();
|
|
console.groupEnd();
|
|
console.log("9");
|
|
console.log("10");
|