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

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

      
    
Rootfs path

      
    
Size
576 (576 bytes)
MD5
2ca03de1dcf8ed0f4918d965a3738840
SHA1
541978faa200571da921f5cee0c141cca0436237
SHA256
5b153f6bcf9bdfce038bbab5253ff345a1383386d8aa296a96f4dfe1edb52f77
SHA512

      
    
SHA1_git
d7310dcc23629ce1550043095f6b4c54d4ab640b
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
_strictLastIndexOf.js | 576 bytes |

/** * A specialized version of `_.lastIndexOf` which performs strict equality * comparisons of values, i.e. `===`. * * @private * @param {Array} array The array to inspect. * @param {*} value The value to search for. * @param {number} fromIndex The index to search from. * @returns {number} Returns the index of the matched value, else `-1`. */ function strictLastIndexOf(array, value, fromIndex) { var index = fromIndex + 1; while (index--) { if (array[index] === value) { return index; } } return index; } module.exports = strictLastIndexOf;
Package URL License Primary language
pkg:npm/acme-demo-app@1.0.0 JavaScript
pkg:npm/lodash@4.17.20 mit JavaScript