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

use the in operator lol

This commit is contained in:
Ashley 2022-12-25 16:42:08 +00:00
parent fe438cf863
commit df72bacb86

View file

@ -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;
}
} }
} }