vault/ui/app/utils/trim-right.js
Vault Automation 0c6c13dd38
license: update headers to IBM Corp. (#10229) (#10233)
* license: update headers to IBM Corp.
* `make proto`
* update offset because source file changed

Signed-off-by: Ryan Cragun <me@ryan.ec>
Co-authored-by: Ryan Cragun <me@ryan.ec>
2025-10-21 15:20:20 -06:00

13 lines
461 B
JavaScript

/**
* Copyright IBM Corp. 2016, 2025
* SPDX-License-Identifier: BUSL-1.1
*/
// 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, '');
}