|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
515 bytes
|
| Line | |
|---|
| 1 | /** Used to match a single whitespace character. */
|
|---|
| 2 | var reWhitespace = /\s/;
|
|---|
| 3 |
|
|---|
| 4 | /**
|
|---|
| 5 | * Used by `_.trim` and `_.trimEnd` to get the index of the last non-whitespace
|
|---|
| 6 | * character of `string`.
|
|---|
| 7 | *
|
|---|
| 8 | * @private
|
|---|
| 9 | * @param {string} string The string to inspect.
|
|---|
| 10 | * @returns {number} Returns the index of the last non-whitespace character.
|
|---|
| 11 | */
|
|---|
| 12 | function trimmedEndIndex(string) {
|
|---|
| 13 | var index = string.length;
|
|---|
| 14 |
|
|---|
| 15 | while (index-- && reWhitespace.test(string.charAt(index))) {}
|
|---|
| 16 | return index;
|
|---|
| 17 | }
|
|---|
| 18 |
|
|---|
| 19 | module.exports = trimmedEndIndex;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.