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

13 lines
238 B
JavaScript
Raw Normal View History

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