* Schedules a new read/write * batch if one isn't pending. * * @private
(fastdom)
| 166 | * @private |
| 167 | */ |
| 168 | function scheduleFlush(fastdom) { |
| 169 | if (!fastdom.scheduled) { |
| 170 | fastdom.scheduled = true; |
| 171 | fastdom.raf(flush.bind(null, fastdom)); |
| 172 | debug('flush scheduled'); |
| 173 | } |
| 174 | } |
| 175 | |
| 176 | /** |
| 177 | * Runs queued `read` and `write` tasks. |
no outgoing calls
no test coverage detected
searching dependent graphs…