* Returns the expression. * @param {object} options options object * @param {Module | null} options.module the module * @param {ChunkGraph} options.chunkGraph the chunk graph * @param {string} options.request the request that should be printed as comment * @param {boolean=} options.weak if
({ module, chunkGraph, request, weak, runtimeRequirements })
| 714 | * @returns {string} the expression |
| 715 | */ |
| 716 | moduleExports({ module, chunkGraph, request, weak, runtimeRequirements }) { |
| 717 | return this.moduleRaw({ |
| 718 | module, |
| 719 | chunkGraph, |
| 720 | request, |
| 721 | weak, |
| 722 | runtimeRequirements |
| 723 | }); |
| 724 | } |
| 725 | |
| 726 | /** |
| 727 | * Returns the expression. |
no test coverage detected