(name, timing)
| 343 | if (timings) { |
| 344 | const times = polyfillsBundle.getTimings(); |
| 345 | const add = (name, timing) => { |
| 346 | const t = times[timing]; |
| 347 | if (t) timings.push({ depth: 2, name, duration: t[0] }); |
| 348 | }; |
| 349 | add('parse', '## parse modules'); |
| 350 | add('node-resolve', '- plugin 2 (node-resolve) - resolveId (async)'); |
| 351 | add('generate', '# GENERATE'); |
no outgoing calls
no test coverage detected