(bytes: Uint8Array)
| 633 | } |
| 634 | |
| 635 | function copyBytes(bytes: Uint8Array): ArrayBuffer { |
| 636 | const buffer = new ArrayBuffer(bytes.byteLength); |
| 637 | new Uint8Array(buffer).set(bytes); |
| 638 | return buffer; |
| 639 | } |
| 640 | |
| 641 | function toDomException(error: Error): DOMException { |
| 642 | if (error instanceof DOMException) { |
no outgoing calls
no test coverage detected