How to use the fp-ts-contrib/lib/List.cons function in fp-ts-contrib

To help you get started, we’ve selected a few fp-ts-contrib examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github DenisFrezzato / hyper-ts-fastify / src / index.ts View on Github external
public chain(action: Action, ended: boolean = false): FastifyConnection {
    return new FastifyConnection(this.req, this.reply, LL.cons(action, this.actions), ended)
  }
  public getRequest(): IncomingMessage {