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.

_charsStartIndex.js 636B

1234567891011121314151617181920
  1. var baseIndexOf = require('./_baseIndexOf');
  2. /**
  3. * Used by `_.trim` and `_.trimStart` to get the index of the first 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 first unmatched string symbol.
  10. */
  11. function charsStartIndex(strSymbols, chrSymbols) {
  12. var index = -1,
  13. length = strSymbols.length;
  14. while (++index < length && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {}
  15. return index;
  16. }
  17. module.exports = charsStartIndex;