(next)
| 138 | * @returns {string | string[]} request with the specifier swapped |
| 139 | */ |
| 140 | const withName = (next) => |
| 141 | Array.isArray(request) ? [next, ...request.slice(1)] : next; |
| 142 | |
| 143 | if ( |
| 144 | runtimeTemplate.outputOptions.environment.nodePrefixForCoreModules === false |
no test coverage detected