(options?: StdWriteOpts | {})
| 555 | * `Writer` provides the most flexibility and the best performance. |
| 556 | */ |
| 557 | export function setStderr(options?: StdWriteOpts | {}) { |
| 558 | _setStdwrite(options ?? {}, _setStderrOps, _getStderrDefaults); |
| 559 | } |
| 560 | |
| 561 | const _TextEncoder = globalThis.TextEncoder ?? function () {}; |
| 562 | const textencoder = new _TextEncoder(); |
no test coverage detected
searching dependent graphs…