(moduleGraph, module, ids, runtime)
| 163 | * @returns {boolean} true if the export is inlined |
| 164 | */ |
| 165 | const isExportInlined = (moduleGraph, module, ids, runtime) => { |
| 166 | if (!ids || ids.length === 0) return false; |
| 167 | if (!isInlineEnabled(module)) return false; |
| 168 | return moduleGraph.getExportsInfo(module).hasInlinedUsedName(ids, runtime); |
| 169 | }; |
| 170 | |
| 171 | module.exports.InlinedUsedName = InlinedUsedName; |
| 172 | module.exports.InlinedValue = InlinedValue; |
no test coverage detected