wallet-core/node_modules/remove-trailing-separator/index.js
2017-08-14 05:02:09 +02:00

14 lines
292 B
JavaScript

var 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 === '\\'));
}