1
0
Fork 0
mirror of https://codeberg.org/ashley/poke.git synced 2025-03-14 15:00:24 -04:00

check if object is null

This commit is contained in:
Ashley 2022-12-19 14:28:09 +00:00
parent 5b168c1ede
commit 03115c7f3c

View file

@ -37,12 +37,16 @@ function getJson(str) {
} }
function checkUnexistingObject(obj) { function checkUnexistingObject(obj) {
if (obj !== null) {
if (obj.authorId !== null) {
if (obj !== undefined) { if (obj !== undefined) {
if (obj.authorId !== undefined) { if (obj.authorId !== undefined) {
return true; return true;
} }
} }
} }
}
}
/* /*
* Api functions * Api functions