stores
    Preparing search index...

    A blockstore that can combine multiple stores. Puts and deletes will write through to all blockstores. Has and get will try each store sequentially. getAll will use every store but also deduplicate any yielded pairs.

    Hierarchy (View Summary)

    Index

    Constructors

    Methods

    • Check for the existence of a value for the passed key

      Parameters

      Returns Promise<boolean>

      const exists = await store.has(new Key('awesome'))

      if (exists) {
      console.log('it is there')
      } else {
      console.log('it is not there')
      }