Skip to content
View tgrecojs's full-sized avatar
🤠
🤠
Block or Report

Block or report tgrecojs

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. agoric-sdk agoric-sdk Public

    Forked from Agoric/agoric-sdk

    monorepo for the Agoric Javascript smart contract platform

    JavaScript 1

  2. hardened-nextjs hardened-nextjs Public

    starting point for developing a next.js application using hardened js

    JavaScript 3

  3. zoe-assertions-with-either-type.js zoe-assertions-with-either-type.js
    1
    const Either = (() => {
    2
      const Right = x => ({
    3
        chain: f => f(x),
    4
        ap: other => other.map(x),
    5
        alt: other => Right(x),