2023-03-14 13:18:55 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) HashiCorp, Inc.
|
|
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
|
|
*/
|
|
|
|
|
2018-05-25 12:15:27 +00:00
|
|
|
export default function rightTrim(str = '', search = '') {
|
|
|
|
const pos = str.length - search.length;
|
2020-06-23 17:34:21 +00:00
|
|
|
if (pos >= 0) {
|
|
|
|
return str.lastIndexOf(search) === pos ? str.substr(0, pos) : str;
|
|
|
|
}
|
|
|
|
return str;
|
2018-05-25 12:15:27 +00:00
|
|
|
}
|