arudradey's picture
download
raw
322 Bytes
var isWin = process.platform === 'win32';
module.exports = function (str) {
var i = str.length - 1;
if (i < 2) {
return str;
}
while (isSeparator(str, i)) {
i--;
}
return str.substr(0, i + 1);
};
function isSeparator(str, i) {
var char = str[i];
return i > 0 && (char === '/' || (isWin && char === '\\'));
}

Xet Storage Details

Size:
322 Bytes
·
Xet hash:
04d2e7c595754e5252f812f867e5aca8ad1409bc4e5d3b2fed3aae46c056daa3

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.