(tasks)
| 261 | var cancelFn; |
| 262 | |
| 263 | function scheduler(tasks) { |
| 264 | // we make a copy since RAFScheduler mutates the state |
| 265 | // of the passed in array variable and this would be difficult |
| 266 | // to track down on the outside code |
| 267 | tickQueue.push([].concat(tasks)); |
| 268 | nextTick(); |
| 269 | } |
| 270 | |
| 271 | /* waitUntilQuiet does two things: |
| 272 | * 1. It will run the FINAL `fn` value only when an uncancelled RAF has passed through |
nothing calls this directly
no test coverage detected