New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@nativescript/firebase-core

Package Overview
Dependencies
Maintainers
18
Versions
106
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nativescript/firebase-core - npm Package Compare versions

Comparing version 3.2.4 to 3.3.0

45

index.android.js

@@ -143,2 +143,23 @@ import { Application, fromObject, knownFolders, Utils } from '@nativescript/core';

export class Firebase {
static addToResumeQueue(callback) {
if (typeof callback !== 'function') {
return;
}
Firebase._onResumeQueue.push(callback);
}
static registerActivityResultContracts(callback) {
if (typeof callback !== 'function') {
return;
}
Firebase._activityResultContractsQueue.on('register', callback);
}
static unregisterActivityResultContracts(callback) {
if (typeof callback !== 'function') {
return;
}
Firebase._activityResultContractsQueue.off('register', callback);
}
static get inForeground() {
return Firebase._inForeground;
}
constructor() {

@@ -192,23 +213,2 @@ if (firebaseInstance) {

}
static addToResumeQueue(callback) {
if (typeof callback !== 'function') {
return;
}
Firebase._onResumeQueue.push(callback);
}
static registerActivityResultContracts(callback) {
if (typeof callback !== 'function') {
return;
}
Firebase._activityResultContractsQueue.on('register', callback);
}
static unregisterActivityResultContracts(callback) {
if (typeof callback !== 'function') {
return;
}
Firebase._activityResultContractsQueue.off('register', callback);
}
static get inForeground() {
return Firebase._inForeground;
}
app(name) {

@@ -265,3 +265,4 @@ if (name) {

if (defaultApp) {
return defaultApp;
resolve(defaultApp);
return;
}

@@ -268,0 +269,0 @@ isDefault = true;

@@ -215,2 +215,14 @@ import { Application, knownFolders } from '@nativescript/core';

export class Firebase {
static addToResumeQueue(callback) {
if (typeof callback !== 'function') {
return;
}
Firebase._onResumeQueue.push(callback);
}
static addToActivityCreatedQueue(callback) {
// noop
}
static get inForeground() {
return Firebase._inForeground;
}
constructor() {

@@ -236,14 +248,2 @@ if (firebaseInstance) {

}
static addToResumeQueue(callback) {
if (typeof callback !== 'function') {
return;
}
Firebase._onResumeQueue.push(callback);
}
static addToActivityCreatedQueue(callback) {
// noop
}
static get inForeground() {
return Firebase._inForeground;
}
app(name) {

@@ -317,3 +317,4 @@ if (name) {

if (defaultApp) {
return defaultApp;
resolve(defaultApp);
return;
}

@@ -320,0 +321,0 @@ if (nativeOptions) {

{
"name": "@nativescript/firebase-core",
"version": "3.2.4",
"version": "3.3.0",
"description": "NativeScript Firebase - Core",

@@ -5,0 +5,0 @@ "main": "index",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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