CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
matchesProperty.js45 linesDownload Raw Back to lodash-es
1import baseClone from './_baseClone.js';2import baseMatchesProperty from './_baseMatchesProperty.js';3 4/** Used to compose bitmasks for cloning. */5var CLONE_DEEP_FLAG = 1;6 7/**8 * Creates a function that performs a partial deep comparison between the9 * value at `path` of a given object to `srcValue`, returning `true` if the10 * object value is equivalent, else `false`.11 *12 * **Note:** Partial comparisons will match empty array and empty object13 * `srcValue` values against any array or object value, respectively. See14 * `_.isEqual` for a list of supported value comparisons.15 *16 * **Note:** Multiple values can be checked by combining several matchers17 * using `_.overSome`18 *19 * @static20 * @memberOf _21 * @since 3.2.022 * @category Util23 * @param {Array|string} path The path of the property to get.24 * @param {*} srcValue The value to match.25 * @returns {Function} Returns the new spec function.26 * @example27 *28 * var objects = [29 *   { 'a': 1, 'b': 2, 'c': 3 },30 *   { 'a': 4, 'b': 5, 'c': 6 }31 * ];32 *33 * _.find(objects, _.matchesProperty('a', 4));34 * // => { 'a': 4, 'b': 5, 'c': 6 }35 *36 * // Checking for several possible values37 * _.filter(objects, _.overSome([_.matchesProperty('a', 1), _.matchesProperty('a', 4)]));38 * // => [{ 'a': 1, 'b': 2, 'c': 3 }, { 'a': 4, 'b': 5, 'c': 6 }]39 */40function matchesProperty(path, srcValue) {41  return baseMatchesProperty(path, baseClone(srcValue, CLONE_DEEP_FLAG));42}43 44export default matchesProperty;45 
basant307/AI_Governance_Project · CoolFace