UNPKG

@tommymynnson/lotide

Version:

A mini clone of the [Lodash](https://lodash.com) library.

11 lines (9 loc) 148 B
const findKey = (o, cb) => { for (const x in o) { if (cb(o[x])) { return x; } } return undefined; }; module.exports = findKey;