Object.prototype.hasOwnProperty.call shortcut
sh npm install --save has
```js var has = require('has');
has({}, 'hasOwnProperty'); // false has(Object.prototype, 'hasOwnProperty'); // true ```