1
Fork 0

use the in operator lol

This commit is contained in:
Ashley 2022-12-25 16:42:08 +00:00
parent fe438cf863
commit df72bacb86

View file

@ -37,8 +37,10 @@ function getJson(str) {
}
function checkUnexistingObject(obj) {
if (Object.hasOwn(obj, "authorId")) {
return true;
if (obj) {
if ("authorId" in obj) {
return true;
}
}
}