Applesauce
    Preparing search index...
    • Pipe a value through a series of async operations

      Type Parameters

      • T

      Parameters

      • value: T
      • ...operations: ((v: any) => any)[]

      Returns Promise<any>

      const result = await pipe(
      draft,
      setContent("hello"),
      addTag("p", pubkey),
      sign(signer)
      );