Skip to content

Instantly share code, notes, and snippets.

@aaronfrost
Created December 7, 2017 03:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aaronfrost/e3d1a1e6549105825eeafe322ad9a5e3 to your computer and use it in GitHub Desktop.
Save aaronfrost/e3d1a1e6549105825eeafe322ad9a5e3 to your computer and use it in GitHub Desktop.
Firestore question
export class FooClass{
constructor(
private fb: FirebaseApp,
private fs: AngularFirestore,
){
const a = fb.firestore();
const b = this.fs;
// Are `a` and `b` pointing at the same thing?
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment