mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 13:28:28 +01:00
use the in operator lol
This commit is contained in:
parent
fe438cf863
commit
df72bacb86
1 changed files with 4 additions and 2 deletions
|
@ -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 a new issue