-
Notifications
You must be signed in to change notification settings - Fork 33
Open
0xdevalias/wakaru
#3Labels
Description
Describe the bug
Input code
var t,
n,
o,
a =
null !==
(t =
null == r ||
null === (n = r.app_info) ||
void 0 === n ||
null === (o = n.base_info) ||
void 0 === o
? void 0
: o.app_name) && void 0 !== t
? t
: "game";Reproduction
No response
Steps to reproduce
Expected behavior
const a = r?.app_info?.base_info?.app_name ?? "game";
Actual behavior
const a = null == r || r.app_info?.base_info?.app_name ?? "game";

