Run ❯
Get your
own
website
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
const path = require('path'); // Resolve relative navigation console.log(path.normalize('/users/./docs/../data/file.txt')); // '/users/data/file.txt' // Handle multiple consecutive slashes console.log(path.normalize('/users//docs////file.txt')); // '/users/docs/file.txt' // Windows-style paths (automatically handled) console.log(path.normalize('C:\\users\\docs\\..\\file.txt')); // 'C:\\users\\file.txt' // Edge cases console.log(path.normalize('')); // '.' console.log(path.normalize('.')); // '.' console.log(path.normalize('..')); // '..' console.log(path.normalize('/..')); // '/'
/users/data/file.txt /users/docs/file.txt C:\users\docs\..\file.txt . .. /