1 //go:build js && wasm 2 // +build js,wasm 3 4 /* 5 Package idb is a low-level driver that provides type-safe bindings to IndexedDB in Wasm programs. 6 The primary focus is to align with the IndexedDB spec, followed by ease of use. 7 8 To get started, get the global indexedDB instance with idb.Global(). See below for examples. 9 */ 10 package idb 11