CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
_baseIndexOf.js21 linesDownload Raw Back to lodash
1var baseFindIndex = require('./_baseFindIndex'),2    baseIsNaN = require('./_baseIsNaN'),3    strictIndexOf = require('./_strictIndexOf');4 5/**6 * The base implementation of `_.indexOf` without `fromIndex` bounds checks.7 *8 * @private9 * @param {Array} array The array to inspect.10 * @param {*} value The value to search for.11 * @param {number} fromIndex The index to search from.12 * @returns {number} Returns the index of the matched value, else `-1`.13 */14function baseIndexOf(array, value, fromIndex) {15  return value === value16    ? strictIndexOf(array, value, fromIndex)17    : baseFindIndex(array, baseIsNaN, fromIndex);18}19 20module.exports = baseIndexOf;21 
basant307/AI_Governance_Project · CoolFace