Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@nodeart/firebase-connector

Package Overview
Dependencies
Maintainers
1
Versions
60
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nodeart/firebase-connector - npm Package Compare versions

Comparing version 2.1.50 to 2.1.51

2

package.json

@@ -35,3 +35,3 @@ {

},
"version": "2.1.50"
"version": "2.1.51"
}

@@ -167,6 +167,11 @@ import { Http, Response } from '@angular/http';

return Observable.create( observer => {
firebase.auth().signInWithEmailAndPassword(email, password).then( data => {
observer.next(data);
observer.complete();
});
firebase.auth().signInWithEmailAndPassword(email, password)
.then(data => {
observer.next(data);
observer.complete();
})
.catch(error => {
observer.error(error);
observer.complete();
});
});

@@ -173,0 +178,0 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc