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