版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

14 строки
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;