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,10 +37,12 @@ function getJson(str) {
|
||||
}
|
||||
|
||||
function checkUnexistingObject(obj) {
|
||||
if (Object.hasOwn(obj, "authorId")) {
|
||||
if (obj) {
|
||||
if ("authorId" in obj) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Api functions
|
||||
|
Loading…
Reference in New Issue
Block a user