open-vault/ui/app/utils/trim-right.js

9 lines
374 B
JavaScript

// will trim a given set of endings from the end of a string
// if isExtension is true, the first char of that string will be escaped
// in the regex
export default function(str, endings = [], isExtension = true) {
let prefix = isExtension ? '\\' : '';
let trimRegex = new RegExp(endings.map(ext => `${prefix}${ext}$`).join('|'));
return str.replace(trimRegex, '');
}