mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-20 18:18:36 +00:00
9 lines
198 B
JavaScript
9 lines
198 B
JavaScript
|
var UNIX_SEPARATOR = '/';
|
||
|
var WINDOWS_SEPARATOR_PATTERN = /\\/g;
|
||
|
|
||
|
function normalizePath(path) {
|
||
|
return path.replace(WINDOWS_SEPARATOR_PATTERN, UNIX_SEPARATOR);
|
||
|
}
|
||
|
|
||
|
module.exports = normalizePath;
|