We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b30fb27 commit 086b57aCopy full SHA for 086b57a
src/index.js
@@ -10,7 +10,7 @@ const keywords = [
10
]
11
12
function hasProperty (holder, key) {
13
- return typeof holder !== 'undefined' && holder.hasOwnProperty(key)
+ return typeof holder !== 'undefined' && Object.prototype.hasOwnProperty.call(holder, key)
14
}
15
16
function proxyData () {
0 commit comments