@react-native-firebase/common
Advanced tools
Comparing version 6.0.0-alpha.6 to 6.0.0-alpha.7
@@ -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. |
{ | ||
"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" |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8139
168