Skip to content

Commit f74cdbd

Browse files
committed
🧪 add more playground examples
1 parent 7131dd7 commit f74cdbd

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

playground/playground.ts

+19
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ import consoleTable from "../src/extras/consoleTable";
99
import slicedownResult from "./fixtures/slicedownResult";
1010
import consoleOrderedList from "../src/extras/consoleOrderedList";
1111
import examples from "./examples";
12+
import ii from "../src/inspect/ii";
13+
import tt from "../src/inspect/tt";
1214

1315
function inspect(value: unknown, options?: ConsoleInspectOptions): unknown {
1416
console.log(value);
@@ -374,3 +376,20 @@ examples.make(() => {
374376
depth: 5,
375377
});
376378
});
379+
380+
examples.make(() => {
381+
ii("empty strings", "", " ");
382+
});
383+
384+
examples.make(() => {
385+
tt(
386+
[
387+
{ type: "folder", name: "notes " },
388+
{ type: "file", name: "todo.md" },
389+
],
390+
[
391+
{ type: "folder", name: "notes " },
392+
{ type: "file", name: "meditation.md" },
393+
],
394+
);
395+
});

0 commit comments

Comments
 (0)