* Checks whether this module graph is export provided. * @param {Module} module the module * @param {ExportInfoName | ExportInfoName[]} exportName a name of an export * @returns {boolean | null} true, if the export is provided by the module. * null, if it's unknown. * false, if it's not pr
(module, exportName)
| 733 | * false, if it's not provided. |
| 734 | */ |
| 735 | isExportProvided(module, exportName) { |
| 736 | const mgm = this._getModuleGraphModule(module); |
| 737 | const result = mgm.exports.isExportProvided(exportName); |
| 738 | return result === undefined ? null : result; |
| 739 | } |
| 740 | |
| 741 | /** |
| 742 | * Returns info about the exports. |
no test coverage detected