We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ii(new URL(url))
1 parent e03373d commit af8452dCopy full SHA for af8452d
playground/playground.ts
@@ -404,3 +404,8 @@ examples.make(() => {
404
405
// ii.defaults.pre = undefined;
406
});
407
+
408
+// 🐛 ii(new URL()) isn't printed at all
409
+examples.make(() => {
410
+ ii(new URL("https://example.com"));
411
+});
src/inspect/consoleInspect.ts
@@ -118,6 +118,8 @@ function inspect(
118
).spans,
119
}),
120
];
121
+ } else {
122
+ spans.push(...inspection.spans);
123
}
124
} else {
125
spans.push(...inspection.spans);
0 commit comments