MCPcopy Create free account
hub / github.com/NativeScript/firebase / apps

Method apps

packages/firebase-core/index.ios.ts:237–249  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

235 }
236
237 get apps() {
238 const apps = [];
239 const keys = FIRApp.allApps.allKeys;
240 const count = keys.count;
241 for (let i = 0; i < count; i++) {
242 const key = keys.objectAtIndex(i);
243 const nativeApp = FIRApp.allApps.objectForKey(key);
244 const app = new FirebaseApp();
245 app._native = nativeApp;
246 apps.push(app);
247 }
248 return apps;
249 }
250}
251
252const launchQueue = [];

Callers

nothing calls this directly

Calls 1

pushMethod · 0.65

Tested by

no test coverage detected