getByKey(property, value) → {any}
Gets an item from the set based on the property strictly equaling the value given.
Returns null if not found.
Parameters
Name | Type | Description |
---|---|---|
property | string | The property to check against the value. |
value | any | The value to check if the property strictly equals. |
Returns
any -
The item that was found, or null if nothing matched.
- Source code: utils/ArraySet.js (Line 70)
Please login to continue.