* Performs encode on given content. * Calls Encoder.performTranslate by default. * @protected * @param {Chain} content * @return {number[]|string|Uint8Array|Chain|Promise} Encoded content
(content)
| 196 | * @return {number[]|string|Uint8Array|Chain|Promise} Encoded content |
| 197 | */ |
| 198 | performEncode (content) { |
| 199 | return this.performTranslate(content, true) |
| 200 | } |
| 201 | |
| 202 | /** |
| 203 | * Triggered after performing encode on given content. |
no test coverage detected