On POSIX systems (Linux/macOS), what is the value of Node's
path.sep?- a
\\ - b
/✓ - c
: - d
.
Explanation:
path.sep is the platform-specific path segment separator: / on POSIX, \ on Windows. Code that hardcodes separators instead of using path.sep/path.join breaks across platforms.