We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa4caf0 commit ea7aab9Copy full SHA for ea7aab9
example/command-capture.js
@@ -7,5 +7,7 @@ var ret = cmd("boing", "boing", "boing");
7
8
var echo = new Command("echo");
9
10
-echo("Rabbits go", ret);
+echo("Rabbits go", String(ret) + "...");
11
12
+// So what exactly is in 'ret' ?
13
+echo(JSON.stringify(ret, undefined, '...'));
0 commit comments