stores
    Preparing search index...

    Hierarchy (View Summary)

    Implements

    Index

    Constructors

    Methods

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

      Parameters

      Returns Await<boolean>

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

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