cartant / firebase-nightlight

An in-memory, JavaScript mock for the Firebase Web API
https://cartant.github.io/firebase-nightlight/
Other
37 stars 8 forks source link

Conditional for `name` param in `initializeApp` is reversed. #27

Closed juliobetta closed 6 years ago

juliobetta commented 6 years ago

🤷‍♂️ . I'll make a PR.

initializeApp(options: any, name?: string): firebase.app.App {

    return name ? this.untyped_.initializeApp(options) : this.untyped_.initializeApp(options, name);
}