UNPKG

get-own-property

Version:

Retrieves a property only if hasOwnProperty() is true.

6 lines (4 loc) 140 B
'use strict' module.exports = function getOwnProperty (obj, key) { if (Object.prototype.hasOwnProperty.call(obj, key)) return obj[key] }