(x, cb)
| 87 | }; |
| 88 | |
| 89 | const getModules = (x, cb) => cb(null, x.modules); |
| 90 | |
| 91 | function* concat<T>(...iterables: Array<Iterable<T>>): Iterable<T> { |
| 92 | for (const it of iterables) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…