stores
    Preparing search index...

    A blockstore backed by the file system

    Implements

    Index

    Constructors

    Properties

    path: string

    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')
      }