MCPcopy
hub / github.com/jabbany/CommentCoreLibrary / setInterval

Method setInterval

src/scripting/api/Runtime/Timer.ts:97–101  ·  view source on GitHub ↗
(f:Function, interval:number)

Source from the content-addressed store, hash-verified

95 }
96
97 public setInterval(f:Function, interval:number):number {
98 var myKey = this._key++;
99 this._timers.push(new RuntimeTimer('interval', interval, myKey, f));
100 return myKey;
101 }
102
103 public setTimeout(f:Function, timeout:number):number {
104 var myKey = this._key++;

Callers 3

CommentManagerFunction · 0.80
intervalFunction · 0.80
animate.jsFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected