(module)
| 1828 | return key; |
| 1829 | }, |
| 1830 | getSize(module) { |
| 1831 | /** @type {Sizes} */ |
| 1832 | const size = Object.create(null); |
| 1833 | for (const key of module.getSourceTypes()) { |
| 1834 | size[key] = module.size(key); |
| 1835 | } |
| 1836 | return size; |
| 1837 | } |
| 1838 | }); |
| 1839 | if (results.length <= 1) { |
| 1840 | continue; |
nothing calls this directly
no test coverage detected