7fife-backend/node_modules/underscore/modules/_keyInObj.js

6 lines
183 B
JavaScript
Raw Normal View History

2024-03-07 13:01:44 +00:00
// Internal `_.pick` helper function to determine whether `key` is an enumerable
// property name of `obj`.
export default function keyInObj(value, key, obj) {
return key in obj;
}