_has.js 101 B

123
  1. export default function _has(prop, obj) {
  2. return Object.prototype.hasOwnProperty.call(obj, prop);
  3. }