()
| 1250 | }; |
| 1251 | |
| 1252 | var writeDone = function() { |
| 1253 | if (j >= obj.length - 1) { |
| 1254 | if (cb) cb(); |
| 1255 | } else { |
| 1256 | window.setTimeout(runAgain, 0); |
| 1257 | } |
| 1258 | }; |
| 1259 | |
| 1260 | var end = obj.length - 1; |
| 1261 | if ((end - j) > bulk) end = j + bulk; |
nothing calls this directly
no test coverage detected
searching dependent graphs…