mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-15 11:07:00 +02:00
9 lines
381 B
JavaScript
9 lines
381 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) {
|
|
const prefix = isExtension ? '\\' : '';
|
|
const trimRegex = new RegExp(endings.map((ext) => `${prefix}${ext}$`).join('|'));
|
|
return str.replace(trimRegex, '');
|
|
}
|