* @param {Buffer} chunk * @param {() => void} callback
(chunk, _, callback)
| 17833 | if (fin) { |
| 17834 | __privateGet(this, _inflate).write(tail); |
| 17835 | } |
| 17836 | __privateGet(this, _inflate).flush(() => { |
| 17837 | if (!__privateGet(this, _inflate)) { |
| 17838 | return; |
| 17839 | } |
| 17840 | const full = Buffer.concat(__privateGet(this, _inflate)[kBuffer], __privateGet(this, _inflate)[kLength]); |
| 17841 | __privateGet(this, _inflate)[kBuffer].length = 0; |
| 17842 | __privateGet(this, _inflate)[kLength] = 0; |
| 17843 | callback(null, full); |
nothing calls this directly
no test coverage detected