(codeNumber)
| 359 | -option : option name. Allowed options are: line number`; |
| 360 | |
| 361 | function colorCode(codeNumber) { |
| 362 | if (options.colors === true) |
| 363 | return [`\x1b[${codeNumber}m`, '\x1b[0m']; |
| 364 | else |
| 365 | return ['', '']; |
| 366 | } |
| 367 | function setCommand(rest) { |
| 368 | var space = rest.indexOf(' '); |
| 369 | if (space === -1) { |
no outgoing calls
no test coverage detected