MCPcopy Create free account
hub / github.com/nodejs/node / hasTickScheduled

Function hasTickScheduled

lib/internal/process/task_queues.js:52–54  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

50const kHasTickScheduled = 0;
51
52function hasTickScheduled() {
53 return tickInfo[kHasTickScheduled] === 1;
54}
55
56function setHasTickScheduled(value) {
57 tickInfo[kHasTickScheduled] = value ? 1 : 0;

Callers 1

runNextTicksFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected