_keyInObj.js 196 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 // Internal `_.pick` helper function to determine whether `key` is an enumerable // property name of `obj`. function keyInObj(value, key, obj) { return key in obj; } module.exports = keyInObj;