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