UNPKG

@gleefullychill/lotide

Version:

A library based off of lodash for a student project

10 lines (8 loc) 157 B
const findKey = function(obj, callback) { for (const key in obj) { if (callback(obj[key])) { return key; } } }; module.exports = findKey;