main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
1.2 KB
|
Rev | Line | |
---|
[d565449] | 1 | import baseToString from './_baseToString.js';
|
---|
| 2 | import castSlice from './_castSlice.js';
|
---|
| 3 | import charsEndIndex from './_charsEndIndex.js';
|
---|
| 4 | import stringToArray from './_stringToArray.js';
|
---|
| 5 | import toString from './toString.js';
|
---|
| 6 | import trimmedEndIndex from './_trimmedEndIndex.js';
|
---|
| 7 |
|
---|
| 8 | /**
|
---|
| 9 | * Removes trailing whitespace or specified characters from `string`.
|
---|
| 10 | *
|
---|
| 11 | * @static
|
---|
| 12 | * @memberOf _
|
---|
| 13 | * @since 4.0.0
|
---|
| 14 | * @category String
|
---|
| 15 | * @param {string} [string=''] The string to trim.
|
---|
| 16 | * @param {string} [chars=whitespace] The characters to trim.
|
---|
| 17 | * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.
|
---|
| 18 | * @returns {string} Returns the trimmed string.
|
---|
| 19 | * @example
|
---|
| 20 | *
|
---|
| 21 | * _.trimEnd(' abc ');
|
---|
| 22 | * // => ' abc'
|
---|
| 23 | *
|
---|
| 24 | * _.trimEnd('-_-abc-_-', '_-');
|
---|
| 25 | * // => '-_-abc'
|
---|
| 26 | */
|
---|
| 27 | function trimEnd(string, chars, guard) {
|
---|
| 28 | string = toString(string);
|
---|
| 29 | if (string && (guard || chars === undefined)) {
|
---|
| 30 | return string.slice(0, trimmedEndIndex(string) + 1);
|
---|
| 31 | }
|
---|
| 32 | if (!string || !(chars = baseToString(chars))) {
|
---|
| 33 | return string;
|
---|
| 34 | }
|
---|
| 35 | var strSymbols = stringToArray(string),
|
---|
| 36 | end = charsEndIndex(strSymbols, stringToArray(chars)) + 1;
|
---|
| 37 |
|
---|
| 38 | return castSlice(strSymbols, 0, end).join('');
|
---|
| 39 | }
|
---|
| 40 |
|
---|
| 41 | export default trimEnd;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.