(controller)
| 107 | controller.enqueue(decode(output.subarray(0, o))); |
| 108 | }, |
| 109 | flush(controller) { |
| 110 | if (remainder) { |
| 111 | const [output, i] = detach( |
| 112 | push.subarray(0, remainder), |
| 113 | calcSizeBase32(remainder), |
| 114 | ); |
| 115 | encode(output, i, 0, abc, padding); |
| 116 | controller.enqueue(decode(output)); |
| 117 | } |
| 118 | }, |
| 119 | }); |
| 120 | } |
| 121 | } |
nothing calls this directly
no test coverage detected