-
-
Notifications
You must be signed in to change notification settings - Fork 32.2k
Closed
Labels
docIssues and PRs related to the documentations.Issues and PRs related to the documentations.pathIssues and PRs related to the path subsystem.Issues and PRs related to the path subsystem.
Description
Doc incorrectly uses forward slashes for path examples on Windows platform:
https://nodejs.org/docs/latest/api/path.html#path_path_isabsolute_path
path.isAbsolute('//server') // true
path.isAbsolute('C:/foo/..') // true
Should be
path.isAbsolute('\\server') // true
path.isAbsolute('C:\foo\..') // true
Metadata
Metadata
Assignees
Labels
docIssues and PRs related to the documentations.Issues and PRs related to the documentations.pathIssues and PRs related to the path subsystem.Issues and PRs related to the path subsystem.