(content)
| 572 | return msg instanceof Uint8Array || msg instanceof ArrayBuffer; |
| 573 | } |
| 574 | stringToBinary(content) { |
| 575 | // same as: this.base64ToBinary (this.stringToBase64 (str)); |
| 576 | return this.encode(content); |
| 577 | } |
| 578 | binaryToString(binary) { |
| 579 | return this.decode(binary); |
| 580 | } |
no test coverage detected