login/node_modules/underscore/amd/_keyInObj.js
2022-12-19 15:48:51 +05:30

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