(options)
| 382 | return inspectDefaultOptions; |
| 383 | }, |
| 384 | set(options) |
| 385 | { |
| 386 | if (options === null || typeof options !== 'object') |
| 387 | { |
| 388 | throw new TypeError('"options" must be an object'); |
| 389 | } |
| 390 | Object.assign(inspectDefaultOptions, options); |
| 391 | } |
| 392 | }); |
| 393 | |
| 394 | // http://en.wikipedia.org/wiki/ANSI_escape_code#graphics |
nothing calls this directly
no outgoing calls
no test coverage detected