login/node_modules/underscore/amd/_keyInObj.js
2024-01-09 11:08:09 +08:00

11 lines
225 B
JavaScript

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;
});