MCPcopy Index your code
hub / github.com/nodejs/node / afterWriteTick

Function afterWriteTick

lib/internal/streams/writable.js:693–697  ·  view source on GitHub ↗
({ stream, state, count, cb })

Source from the content-addressed store, hash-verified

691}
692
693function afterWriteTick({ stream, state, count, cb }) {
694 state[kState] &= ~kAfterWriteTickInfo;
695 state[kAfterWriteTickInfoValue] = null;
696 return afterWrite(stream, state, count, cb);
697}
698
699function afterWrite(stream, state, count, cb) {
700 state[kState] &= ~kAfterWritePending;

Callers

nothing calls this directly

Calls 1

afterWriteFunction · 0.70

Tested by

no test coverage detected