"use strict";Object.defineProperty(exports,"__esModule",{value:true});exports.joinPathSegments=void0;functionjoinPathSegments(a,b,separator){/** * The correct handling of cases when the first segment is a root (`/`, `C:/`) or UNC path (`//?/C:/`). */if(a.endsWith(separator)){returna+b;}returna+separator+b;}exports.joinPathSegments=joinPathSegments;