Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_charsEndIndex.js 600B

12345678910111213141516171819
  1. var baseIndexOf = require('./_baseIndexOf');
  2. /**
  3. * Used by `_.trim` and `_.trimEnd` to get the index of the last string symbol
  4. * that is not found in the character symbols.
  5. *
  6. * @private
  7. * @param {Array} strSymbols The string symbols to inspect.
  8. * @param {Array} chrSymbols The character symbols to find.
  9. * @returns {number} Returns the index of the last unmatched string symbol.
  10. */
  11. function charsEndIndex(strSymbols, chrSymbols) {
  12. var index = strSymbols.length;
  13. while (index-- && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {}
  14. return index;
  15. }
  16. module.exports = charsEndIndex;