This is a super-simple promise-based keyval store implemented with IndexedDB, originally based on async-storage by Mozilla. It's small and tree-shakeable. If you only use get/set, the library is 295 bytes (brotli'd), if you use all methods it's 573 bytes. localForage offers similar functionality, but supports older browsers with broken/absent IDB implementations. Because of that, it's orders of ma

