Skip to content

Commit 086b57a

Browse files
ydfzgyjAkryum
authored andcommitted
fix: hasOwnProperty is not a function (#294)
this.$options.methods may created by `Object.create`, so the object without a prototype can not use `hasOwnProperty` directly
1 parent b30fb27 commit 086b57a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const keywords = [
1010
]
1111

1212
function hasProperty (holder, key) {
13-
return typeof holder !== 'undefined' && holder.hasOwnProperty(key)
13+
return typeof holder !== 'undefined' && Object.prototype.hasOwnProperty.call(holder, key)
1414
}
1515

1616
function proxyData () {

0 commit comments

Comments
 (0)