({ stream, state, count, cb })
| 691 | } |
| 692 | |
| 693 | function afterWriteTick({ stream, state, count, cb }) { |
| 694 | state[kState] &= ~kAfterWriteTickInfo; |
| 695 | state[kAfterWriteTickInfoValue] = null; |
| 696 | return afterWrite(stream, state, count, cb); |
| 697 | } |
| 698 | |
| 699 | function afterWrite(stream, state, count, cb) { |
| 700 | state[kState] &= ~kAfterWritePending; |
nothing calls this directly
no test coverage detected