MCPcopy Create free account
hub / github.com/d3/d3-queue / maybeNotify

Function maybeNotify

src/queue.js:109–115  ·  view source on GitHub ↗
(q)

Source from the content-addressed store, hash-verified

107}
108
109function maybeNotify(q) {
110 if (!q._active && q._call) {
111 var d = q._data;
112 q._data = undefined; // allow gc
113 q._call(q._error, d);
114 }
115}
116
117export default function queue(concurrency) {
118 if (concurrency == null) concurrency = Infinity;

Callers 3

queue.jsFile · 0.85
endFunction · 0.85
abortFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…