* Performs encode on given content. * @protected * @param {Chain} content * @return {number[]|string|Uint8Array|Chain} Encoded content
(content)
| 120 | * @return {number[]|string|Uint8Array|Chain} Encoded content |
| 121 | */ |
| 122 | performEncode (content) { |
| 123 | // Forward request to the internal byte encoder |
| 124 | return ByteEncoder.base64StringFromBytes( |
| 125 | content.getBytes(), |
| 126 | this.getVariantOptions()) |
| 127 | } |
| 128 | |
| 129 | /** |
| 130 | * Performs decode on given content. |
nothing calls this directly
no test coverage detected