@nodelib/fs.scandir
Version:
List files and directories inside the specified directory
13 lines (12 loc) • 384 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.joinPathSegments = joinPathSegments;
function joinPathSegments(a, b, separator) {
/**
* The correct handling of cases when the first segment is a root (`/`, `C:/`) or UNC path (`//?/C:/`).
*/
if (a.endsWith(separator)) {
return a + b;
}
return a + separator + b;
}
;