normalizePath.js 127 B

123456
  1. exports = function(path) {
  2. return path.replace(regSlashes, '/');
  3. };
  4. var regSlashes = /[\\/]+/g;
  5. module.exports = exports;