(file)
| 256 | } |
| 257 | |
| 258 | function normalizePath(file) { |
| 259 | return path.sep === "\\" ? file.replace(/\\/g, "/") : file; |
| 260 | } |
| 261 | |
| 262 | // eslint-disable-next-line no-control-regex |
| 263 | const filenameReservedRegex = /[<>:"/\\|?*]/g; |
no outgoing calls
no test coverage detected