9 lines
208 B
JavaScript
Raw Normal View History

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
2018-05-25 13:15:27 +01:00
export default function leftTrim(str = '', search = '') {
return str.indexOf(search) === 0 ? str.substr(search.length) : str;
}