mirror of
https://codeberg.org/ashley/poke
synced 2025-04-05 17:17:59 +00:00
check if object is null
This commit is contained in:
parent
4aa8f3bc1b
commit
80094eb0e9
@ -37,9 +37,13 @@ function getJson(str) {
|
||||
}
|
||||
|
||||
function checkUnexistingObject(obj) {
|
||||
if (obj !== undefined) {
|
||||
if (obj.authorId !== undefined) {
|
||||
return true;
|
||||
if (obj !== null) {
|
||||
if (obj.authorId !== null) {
|
||||
if (obj !== undefined) {
|
||||
if (obj.authorId !== undefined) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user