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

@react-native-firebase/common

Package Overview
Dependencies
Maintainers
2
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@react-native-firebase/common - npm Package Compare versions

Comparing version 6.0.0-alpha.6 to 6.0.0-alpha.7

13

lib/validate.js

@@ -20,2 +20,15 @@ /*

export function objectKeyValuesAreStrings(object) {
if (!isObject(object)) return false;
const entries = Object.entries(object);
for (let i = 0; i < entries.length; i++) {
const [key, value] = entries[i];
if (!isString(key) || !isString(value)) return false;
}
return true;
}
/**

@@ -22,0 +35,0 @@ * Simple is null check.

4

package.json
{
"name": "@react-native-firebase/common",
"version": "6.0.0-alpha.6",
"version": "6.0.0-alpha.7",
"author": "Invertase <oss@invertase.io> (http://invertase.io)",

@@ -18,3 +18,3 @@ "description": "React Native Firebase internal common utilities & helpers.",

],
"gitHead": "b3e3f0742d368ea1dd4af0dd4a7f4b8d88ae4086",
"gitHead": "1e1927c068973f1b5d1be2695093aa603716b2da",
"publishConfig": {

@@ -21,0 +21,0 @@ "access": "public"

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