bahai-reflib-data
Advanced tools
Comparing version 0.3.1 to 0.3.2
# CHANGES for `bahai-reflib-data` | ||
## 0.3.2 | ||
- fix: remove optional chaining use from browser-facing API | ||
## 0.3.1 | ||
@@ -4,0 +8,0 @@ |
{ | ||
"name": "bahai-reflib-data", | ||
"version": "0.3.1", | ||
"version": "0.3.2", | ||
"author": "Brett Zamir <brettz9@yahoo.com>", | ||
@@ -5,0 +5,0 @@ "contributors": [], |
@@ -50,3 +50,4 @@ import { | ||
async function getIdForUrl (url) { | ||
return (await getInfoForUrl(url))?.id; | ||
const info = await getInfoForUrl(url); | ||
return info && info.id; | ||
} | ||
@@ -53,0 +54,0 @@ |
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
7329787
297401