12345678910111213 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.joinPathSegments = void 0;
- function joinPathSegments(a, b, separator) {
-
- if (a.endsWith(separator)) {
- return a + b;
- }
- return a + separator + b;
- }
- exports.joinPathSegments = joinPathSegments;
|