has-property.js 130 B

12345
  1. 'use strict';
  2. module.exports = function(element, property) {
  3. return Object.prototype.hasOwnProperty.call(element, property);
  4. };