mirror of
https://codeberg.org/ashley/poke
synced 2025-04-05 09:07: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) {
|
||||
if (Object.hasOwn(obj, "authorId")) {
|
||||
return true;
|
||||
if (obj) {
|
||||
if ("authorId" in obj) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user