demo___customer_pitch-c4152739-a50b-4b5b-9d4d-0561461666d9.zip-extract/_dependencies/npm/lodash-4.17.20/_charsStartIndex.js

Path
demo___customer_pitch-c4152739-a50b-4b5b-9d4d-0561461666d9.zip-extract/_dependencies/npm/lodash-4.17.20/_charsStartIndex.js
Status
scanned
Type
file
Name
_charsStartIndex.js
Extension
.js
Programming language
JavaScript
Mime type
text/plain
File type
ASCII text
Tag

      
    
Rootfs path

      
    
Size
636 (636 bytes)
MD5
ebc17df5400a1d6a6266ca3bc53e9f3e
SHA1
c4db2a95b12b0a442f73d3ad3d27c0048193b216
SHA256
33ee500387c9d29e2ec9ab5f7c7e1d66891b7f531b403afff0e282c123a25acb
SHA512

      
    
SHA1_git
b17afd2547171b26c520fdc34fa50bcaed9341e6
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
_charsStartIndex.js | 636 bytes |

var baseIndexOf = require('./_baseIndexOf'); /** * Used by `_.trim` and `_.trimStart` to get the index of the first string symbol * that is not found in the character symbols. * * @private * @param {Array} strSymbols The string symbols to inspect. * @param {Array} chrSymbols The character symbols to find. * @returns {number} Returns the index of the first unmatched string symbol. */ function charsStartIndex(strSymbols, chrSymbols) { var index = -1, length = strSymbols.length; while (++index < length && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {} return index; } module.exports = charsStartIndex;
Package URL License Primary language
pkg:npm/acme-demo-app@1.0.0 JavaScript
pkg:npm/lodash@4.17.20 mit JavaScript