/home/techb158/balavpn.abdallabala.com/node_modules/@nodelib/fs.scandir/out/providers
NameSizeModeActions
async.d.ts5240666editdlrm
async.js36860666editdlrm
common.d.ts910666editdlrm
common.js4190666editdlrm
sync.d.ts3330666editdlrm
sync.js19900666editdlrm
Edit: /home/techb158/balavpn.abdallabala.com/node_modules/@nodelib/fs.scandir/out/providers/common.js (419B)
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.joinPathSegments = void 0; 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; } exports.joinPathSegments = joinPathSegments;