We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a04aa36 commit 177e13cCopy full SHA for 177e13c
doc/api/path.md
@@ -361,6 +361,14 @@ instance of the platform-specific path segment separator (`/` on POSIX and
361
If the `path` is a zero-length string, `'.'` is returned, representing the
362
current working directory.
363
364
+On POSIX, the types of normalization applied by this function do not strictly
365
+adhere to the POSIX specification. For example, this function will replace two
366
+leading forward slashes with a single slash as if it was a regular absolute
367
+path, whereas a few POSIX systems assign special meaning to paths beginning with
368
+exactly two forward slashes. Similarly, other substitutions performed by this
369
+function, such as removing `..` segments, may change how the underlying system
370
+resolves the path.
371
+
372
For example, on POSIX:
373
374
```js
0 commit comments