* Performs decode on given content. * @protected * @param {Chain} content * @return {number[]|string|Uint8Array|Chain} Decoded content
(content)
| 133 | * @return {number[]|string|Uint8Array|Chain} Decoded content |
| 134 | */ |
| 135 | performDecode (content) { |
| 136 | // Forward request to the internal byte encoder |
| 137 | return ByteEncoder.bytesFromBase64String( |
| 138 | content.getString(), |
| 139 | this.getVariantOptions()) |
| 140 | } |
| 141 | |
| 142 | /** |
| 143 | * Triggered when a setting field has changed. |
nothing calls this directly
no test coverage detected