(src, dest)
| 362 | } |
| 363 | |
| 364 | encodeInto(src, dest) { |
| 365 | validateString(src, 'src'); |
| 366 | if (!dest || !isUint8Array(dest)) |
| 367 | throw new ERR_INVALID_ARG_TYPE('dest', 'Uint8Array', dest); |
| 368 | |
| 369 | return this.#encodeInto(src, dest); |
| 370 | } |
| 371 | |
| 372 | [inspect](depth, opts) { |
| 373 | if (typeof depth === 'number' && depth < 0) |
no test coverage detected