This commit is contained in:
2020-10-08 17:41:35 +00:00
parent 2beec7ebde
commit dc20540e91
4 changed files with 42 additions and 23 deletions

View File

@@ -438,7 +438,7 @@ export default {
return (
!!obj &&
(keyParts.length > 1
? has(obj[key.split(".")[0]], keyParts.slice(1).join("."))
? this.has(obj[key.split(".")[0]], keyParts.slice(1).join("."))
: hasOwnProperty.call(obj, key))
);
},