8 lines
196 B
JavaScript
Raw Permalink Normal View History

2025-04-23 09:34:08 +08:00
// 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;