(module)
| 148 | * @returns {boolean} true when inlining is enabled for this module |
| 149 | */ |
| 150 | const isInlineEnabled = (module) => |
| 151 | Boolean( |
| 152 | module.buildInfo && |
| 153 | /** @type {import("../Module").BuildInfo} */ |
| 154 | (module.buildInfo).inlineExports |
| 155 | ); |
| 156 | |
| 157 | /** |
| 158 | * Check whether an import to `module` for `ids` resolves to an inlined value. |
no outgoing calls
no test coverage detected