@nativescript/firebase-core
Advanced tools
Comparing version 1.0.0-alpha.25 to 1.0.0-alpha.27
{ | ||
"name": "@nativescript/firebase-core", | ||
"version": "1.0.0-alpha.25", | ||
"version": "1.0.0-alpha.27", | ||
"description": "NativeScript Firebase - Core", | ||
@@ -5,0 +5,0 @@ "main": "index", |
13
utils.js
@@ -188,3 +188,14 @@ function numberHasDecimals(item) { | ||
default: | ||
store = null; | ||
if (typeof data === 'object' && data instanceof java.util.List) { | ||
const array = []; | ||
const size = data.size(); | ||
for (let i = 0, n = size; i < n; i++) { | ||
array[i] = deserialize(data.get(i)); | ||
} | ||
store = array; | ||
} | ||
else { | ||
store = null; | ||
} | ||
break; | ||
} | ||
@@ -191,0 +202,0 @@ return store; |
Sorry, the diff of this file is not supported yet
122230
1115