You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given that my configuration object contains something like is_logged_in: false
When I read the configuration as this.config.get('is_logged_in')
Then I will get null as I didn't define the default value.
I could work around it by just setting the default as false, but better to check if the key exists.
The text was updated successfully, but these errors were encountered:
Given that my configuration object contains something like
is_logged_in: false
When I read the configuration as
this.config.get('is_logged_in')
Then I will get
null
as I didn't define the default value.I could work around it by just setting the default as
false
, but better to check if the key exists.The text was updated successfully, but these errors were encountered: