createUserAndRedirect
. Можно сделать так:
if (typeof APP.config.env.stage != 'undefined' && APP.config.env.stage == 'dev')
if (typeof APP != 'undefined' && typeof APP .config != 'undefined' && ...
if(APP && APP.config && APP.config.env && APP.config.env.stage === 'dev')
if(APP?.config?.env?.stage === 'dev')
map.has(key) понадёжнее чем key in obj