crm-api-template-generator/backend/utils/findProperty.js

11 lines
208 B
JavaScript
Raw Permalink Normal View History

2023-11-29 20:05:48 +00:00
function findProperty(array, property) {
const index = array.findIndex((item) => {
return item[property] !== undefined
})
return array[index][property]
}
module.exports = findProperty