UNPKG

react-klasha

Version:

This is an reactJS library for implementing klasha payment gateway

17 lines (15 loc) 541 B
/** * Iterates an array of objects looking for a property with a specific value * @method findBy * @memberof axe.utils * @param {Array} array The array of objects to iterate * @param {String} key The property name to test against * @param {Mixed} value The value to find * @return {Object} The first matching object or `undefined` if no match */ function findBy(array, key, value) { if (Array.isArray(array)) { return array.find(obj => typeof obj === 'object' && obj[key] === value); } } export default findBy;