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,9 +37,11 @@ function getJson(str) {
} }
function checkUnexistingObject(obj) { function checkUnexistingObject(obj) {
if (Object.hasOwn(obj, "authorId")) { if (obj) {
if ("authorId" in obj) {
return true; return true;
} }
}
} }
/* /*