版博士V2.0程序
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

14 líneas
419 B

  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.joinPathSegments = void 0;
  4. function joinPathSegments(a, b, separator) {
  5. /**
  6. * The correct handling of cases when the first segment is a root (`/`, `C:/`) or UNC path (`//?/C:/`).
  7. */
  8. if (a.endsWith(separator)) {
  9. return a + b;
  10. }
  11. return a + separator + b;
  12. }
  13. exports.joinPathSegments = joinPathSegments;