Files
GNX-mailEnterprise/frontend/node_modules/clean-css/lib/reader/normalize-path.js
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03:00

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;