exportfunctionemulatorHost(env) {
return env?.FIREBASE_AUTH_EMULATOR_HOST;
}
/**
* When true the SDK should communicate with the Auth Emulator for all API
* calls and also produce unsigned tokens.
*/exportconstuseEmulator = (env) => {
return !!emulatorHost(env);
};