(...iterables: Array<Iterable<T>>)
| 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) { |
| 93 | yield* it; |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | function prelude(optimize) { |
| 98 | return virtualModule( |
no outgoing calls
no test coverage detected
searching dependent graphs…