(rest)
| 425 | } |
| 426 | |
| 427 | function printCommand(rest) { |
| 428 | var [expr, style] = splitPrintOptions(rest, {pretty: options.pretty}); |
| 429 | return doPrint(expr, style); |
| 430 | } |
| 431 | printCommand.summary = 'Prints the given expression'; |
| 432 | printCommand.helpText = `USAGE |
| 433 | print[/pretty|p|brief|b] <expr> |
nothing calls this directly
no test coverage detected