MCPcopy Create free account
hub / github.com/jipegit/OSXAuditor / d3_timer_mark

Function d3_timer_mark

d3-3.2.8/d3.js:1948–1956  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1946 d3_timer_active.time = then + delay;
1947 }
1948 function d3_timer_mark() {
1949 var now = Date.now();
1950 d3_timer_active = d3_timer_queueHead;
1951 while (d3_timer_active) {
1952 if (now >= d3_timer_active.time) d3_timer_active.flush = d3_timer_active.callback(now - d3_timer_active.time);
1953 d3_timer_active = d3_timer_active.next;
1954 }
1955 return now;
1956 }
1957 function d3_timer_sweep() {
1958 var t0, t1 = d3_timer_queueHead, time = Infinity;
1959 while (t1) {

Callers 2

d3_timer_stepFunction · 0.85
d3.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected