Bones/node_modules/remove-trailing-separator/index.js

14 lines
294 B
JavaScript
Raw Normal View History

2017-05-17 13:45:25 -04:00
const isWin = process.platform === 'win32';
module.exports = function (str) {
while (endsInSeparator(str)) {
str = str.slice(0, -1);
}
return str;
};
function endsInSeparator(str) {
var last = str[str.length - 1];
return str.length > 1 && (last === '/' || (isWin && last === '\\'));
}