d19200634f802b7f7a95c23fef3b1cda8c6da6a47d31a7b5bfa301d5d105dc62.json 741 B

1
  1. {"ast":null,"code":"import baseIndexOf from './_baseIndexOf.js';\n\n/**\n * Used by `_.trim` and `_.trimStart` to get the index of the first string symbol\n * that is not found in the character symbols.\n *\n * @private\n * @param {Array} strSymbols The string symbols to inspect.\n * @param {Array} chrSymbols The character symbols to find.\n * @returns {number} Returns the index of the first unmatched string symbol.\n */\nfunction charsStartIndex(strSymbols, chrSymbols) {\n var index = -1,\n length = strSymbols.length;\n while (++index < length && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {}\n return index;\n}\nexport default charsStartIndex;","map":null,"metadata":{},"sourceType":"module","externalDependencies":[]}