Reports whether CollegeDB has been initialized in the current context.
Lets callers drop the ad-hoc let initialized = false guard they otherwise keep alongside a wrapper around initialize.
let initialized = false
true once initialize/initializeAsync/initializeFromEnv has run
true
1.2.4
if (!isInitialized()) { initializeFromEnv(env);} Copy
if (!isInitialized()) { initializeFromEnv(env);}
Reports whether CollegeDB has been initialized in the current context.
Lets callers drop the ad-hoc
let initialized = falseguard they otherwise keep alongside a wrapper around initialize.