(outputEncoding)
| 169 | }; |
| 170 | |
| 171 | function final(outputEncoding) { |
| 172 | const ret = this[kHandle].final(); |
| 173 | |
| 174 | if (outputEncoding && outputEncoding !== 'buffer') { |
| 175 | this._decoder = getDecoder(this._decoder, outputEncoding); |
| 176 | return this._decoder.end(ret); |
| 177 | } |
| 178 | |
| 179 | return ret; |
| 180 | }; |
| 181 | |
| 182 | function setAutoPadding(ap) { |
| 183 | if (!this[kHandle].setAutoPadding(!!ap)) |
nothing calls this directly
no test coverage detected
searching dependent graphs…