5263898c4fb3b030f931727791fa21d68ccc089b1f9cd5ec4d3b4de86d99d5630b73840e09af73fccc64e8d04cd2a009b246def90c15de993c6e6b6b5cdad1 239 B

123456789101112131415161718
  1. # has
  2. > Object.prototype.hasOwnProperty.call shortcut
  3. ## Installation
  4. ```sh
  5. npm install --save has
  6. ```
  7. ## Usage
  8. ```js
  9. var has = require('has');
  10. has({}, 'hasOwnProperty'); // false
  11. has(Object.prototype, 'hasOwnProperty'); // true
  12. ```