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

bahai-reflib-data

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bahai-reflib-data - npm Package Compare versions

Comparing version 0.3.1 to 0.3.2

4

CHANGES.md
# CHANGES for `bahai-reflib-data`
## 0.3.2
- fix: remove optional chaining use from browser-facing API
## 0.3.1

@@ -4,0 +8,0 @@

2

package.json
{
"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 @@

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