abstracted-firebase
Advanced tools
Comparing version 0.37.1 to 0.37.3
@@ -417,5 +417,5 @@ "use strict"; | ||
try { | ||
const response = (await typeof path) === "string" | ||
const response = await (typeof path === "string" | ||
? this.ref(util_1.slashNotation(path)).once("value") | ||
: path.setDB(this).execute(); | ||
: path.setDB(this).execute()); | ||
return response; | ||
@@ -422,0 +422,0 @@ } |
@@ -415,5 +415,5 @@ // tslint:disable: member-ordering | ||
try { | ||
const response = (await typeof path) === "string" | ||
const response = await (typeof path === "string" | ||
? this.ref(slashNotation(path)).once("value") | ||
: path.setDB(this).execute(); | ||
: path.setDB(this).execute()); | ||
return response; | ||
@@ -420,0 +420,0 @@ } |
@@ -427,5 +427,5 @@ (function (factory) { | ||
try { | ||
const response = (await typeof path) === "string" | ||
const response = await (typeof path === "string" | ||
? this.ref(util_1.slashNotation(path)).once("value") | ||
: path.setDB(this).execute(); | ||
: path.setDB(this).execute()); | ||
return response; | ||
@@ -432,0 +432,0 @@ } |
{ | ||
"name": "abstracted-firebase", | ||
"version": "0.37.1", | ||
"version": "0.37.3", | ||
"description": "Core functional library supporting 'abstracted-admin' and 'abstracted-client'", | ||
@@ -50,3 +50,3 @@ "license": "MIT", | ||
"chai": "^4.2.0", | ||
"firemock": "^0.36.0", | ||
"firemock": "^0.37.1", | ||
"js-yaml": "^3.13.1", | ||
@@ -80,2 +80,2 @@ "lodash": "^4.17.15", | ||
} | ||
} | ||
} |
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
161947