mirror of
https://codeberg.org/ashley/poke
synced 2025-04-06 01:27:59 +00:00
use the in operator lol
This commit is contained in:
parent
fe438cf863
commit
df72bacb86
@ -37,8 +37,10 @@ function getJson(str) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function checkUnexistingObject(obj) {
|
function checkUnexistingObject(obj) {
|
||||||
if (Object.hasOwn(obj, "authorId")) {
|
if (obj) {
|
||||||
return true;
|
if ("authorId" in obj) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user