safari-14-idb-fix

Working around a Safari 14 IndexedDB bug

Apache-2.0 12 个版本
安装
npm install safari-14-idb-fix
yarn add safari-14-idb-fix
pnpm add safari-14-idb-fix
bun add safari-14-idb-fix
README

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. The issue was fixed in Safari 14.7.

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 definitely 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 a specific build:

  • safari-14-idb-fix/dist/index.js EcmaScript module.
  • safari-14-idb-fix/dist/index.cjs CommonJS module.
  • safari-14-idb-fix/dist/iife.min.js Minified plain JS, which creates an idbReady global.
版本列表
3.0.0 2021-09-16
2.0.3 2021-09-07
2.0.2 2021-09-07
2.0.1 2021-09-07
2.0.0 2021-09-07
1.0.6 2021-09-06
1.0.5 2021-09-06
1.0.4 2021-07-06
1.0.3 2021-06-21
1.0.2 2021-06-18
1.0.1 2021-06-18
1.0.0 2021-06-17