- Version: v8.9.4
- Platform: Windows 10 64-bit
- Subsystem: path
So there seems to have been some change in path.normalize for win32 between Node.js 8.4.0 and 8.5.0 that changed how paths are being normalized. There seems to be a behavior difference with some paths that looked like drive-relative paths. Example:
> path.normalize(".\\C:../..")
'.'
Versions 8.4.0 and below used to do this:
> path.normalize(".\\C:../..")
'C:..\\..'
Is this an expected change?
So there seems to have been some change in
path.normalizefor win32 between Node.js 8.4.0 and 8.5.0 that changed how paths are being normalized. There seems to be a behavior difference with some paths that looked like drive-relative paths. Example:Versions 8.4.0 and below used to do this:
Is this an expected change?