forked from lodash/lodash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrimEnd.js
36 lines (33 loc) · 971 Bytes
/
trimEnd.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import castSlice from './.internal/castSlice.js'
import charsEndIndex from './.internal/charsEndIndex.js'
import stringToArray from './.internal/stringToArray.js'
const methodName = ''.trimRight ? 'trimRight': 'trimEnd'
/**
* Removes trailing whitespace or specified characters from `string`.
*
* @since 4.0.0
* @category String
* @param {string} [string=''] The string to trim.
* @param {string} [chars=whitespace] The characters to trim.
* @returns {string} Returns the trimmed string.
* @see trim, trimStart
* @example
*
* trimEnd(' abc ')
* // => ' abc'
*
* trimEnd('-_-abc-_-', '_-')
* // => '-_-abc'
*/
function trimEnd(string, chars) {
if (string && chars === undefined) {
return string[methodName]()
}
if (!string || !chars) {
return string
}
const strSymbols = stringToArray(string)
const end = charsEndIndex(strSymbols, stringToArray(chars)) + 1
return castSlice(strSymbols, 0, end).join('')
}
export default trimEnd