You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
198 B

4 years ago
  1. var UNIX_SEPARATOR = '/';
  2. var WINDOWS_SEPARATOR_PATTERN = /\\/g;
  3. function normalizePath(path) {
  4. return path.replace(WINDOWS_SEPARATOR_PATTERN, UNIX_SEPARATOR);
  5. }
  6. module.exports = normalizePath;