biofriction-wp-theme/node_modules/clean-css/lib/reader/normalize-path.js

9 lines
198 B
JavaScript
Raw Normal View History

2021-10-26 14:18:09 +02:00
var UNIX_SEPARATOR = '/';
var WINDOWS_SEPARATOR_PATTERN = /\\/g;
function normalizePath(path) {
return path.replace(WINDOWS_SEPARATOR_PATTERN, UNIX_SEPARATOR);
}
module.exports = normalizePath;