1.0.0 • Published 7 years ago
get-own-property v1.0.0
getOwnProperty
Retrieves a property only if hasOwnProperty()
is true.
Installation
npm install get-own-property --save
Usage
const getOwnProperty = require('get-own-property')
const obj = {hello: 'world'}
getOwnProperty(obj, 'hello') // 'world'
typeof obj.toString // 'function'
getOwnProperty(obj, 'toString') // undefined
1.0.0
7 years ago