Socket
Socket
Sign inDemoInstall

safari-14-idb-fix

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

safari-14-idb-fix

Working around a Safari 14 IndexedDB bug


Version published
Weekly downloads
103K
increased by3.66%
Maintainers
1
Weekly downloads
 
Created
Source

Safari 14 IndexedDB fix

Safari on macOS Big Sur 11.4 and iOS 14.6 has a nasty bug where IndexedDB requests get lost and never resolve.

This library (well, function) works around the issue and tells you when IndexedDB is actually available.

To install:

npm i safari-14-idb-fix

To use:

import idbReady from 'safari-14-idb-fix';

idbReady().then(() => {
  // Safari has figured out where IndexedDB is.
  // You can use IndexedDB as usual.
});

All bundles

A modern build tool will handle the above example fine, but if you need some different builds:

  • dist/cjs/index.js CommonJS module.
  • dist/cjs-compat/index.js CommonJS module, transpiled for older browsers.
  • dist/esm/index.js EcmaScript module.
  • dist/esm-compat/index.js EcmaScript module, transpiled for older browsers.
  • dist/iife/index-min.js Minified plain JS, which creates an idbReady global.
  • dist/iife-compat/index-min.js As above, but transpiled for older browsers.

FAQs

Package last updated on 18 Jun 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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