* Checks whether this module provides the specified export. * @deprecated * @param {string} exportName a name of an export * @returns {boolean | null} true, if the export is provided why the module. * null, if it's unknown. * false, if it's not provided.
(exportName)
| 618 | * false, if it's not provided. |
| 619 | */ |
| 620 | isProvided(exportName) { |
| 621 | return ModuleGraph.getModuleGraphForModule( |
| 622 | this, |
| 623 | "Module.usedExports", |
| 624 | "DEP_WEBPACK_MODULE_USED_EXPORTS" |
| 625 | ).isExportProvided(this, exportName); |
| 626 | } |
| 627 | // BACKWARD-COMPAT END |
| 628 | |
| 629 | /** |
no test coverage detected