* Performs decode on given content. * Calls Encoder.performTranslate by default. * @protected * @param {Chain} content * @return {number[]|string|Uint8Array|Chain|Promise} Decoded content
(content)
| 229 | * @return {number[]|string|Uint8Array|Chain|Promise} Decoded content |
| 230 | */ |
| 231 | performDecode (content) { |
| 232 | return this.performTranslate(content, false) |
| 233 | } |
| 234 | |
| 235 | /** |
| 236 | * Triggered after performing decode on given content. |
no test coverage detected