(modules)
| 251 | * @returns {string} arguments |
| 252 | */ |
| 253 | const externalsArguments = (modules) => |
| 254 | modules |
| 255 | .map( |
| 256 | (m) => |
| 257 | `__WEBPACK_EXTERNAL_MODULE_${Template.toIdentifier( |
| 258 | `${chunkGraph.getModuleId(m)}` |
| 259 | )}__` |
| 260 | ) |
| 261 | .join(", "); |
| 262 | |
| 263 | /** |
| 264 | * Returns stringified library name. |
nothing calls this directly
no test coverage detected