normalize-path-sep.js 246 B

12345678910
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.normalizePathSep = normalizePathSep;
  6. function normalizePathSep(path) {
  7. return path.replace(/\\/g, '/');
  8. }
  9. //# sourceMappingURL=normalize-path-sep.js.map