(targetPath, resolvedPath)
| 38 | for (const pattern of !patterns || Array.isArray(patterns) ? patterns || [] : [patterns]) { |
| 39 | const isNegated = pattern.startsWith('!'); |
| 40 | const modifyMap = (targetPath, resolvedPath) => |
| 41 | isNegated |
| 42 | ? dynamicRequireModules.delete(targetPath) |
| 43 | : dynamicRequireModules.set(targetPath, resolvedPath); |
| 44 | // eslint-disable-next-line new-cap |
| 45 | for (const path of new fdir() |
| 46 | .withBasePath() |
no outgoing calls
no test coverage detected