Brandon Blaylock
Brandon Blaylock
Hello all, Over the past week or so I've been combining what I've learned from static-land and fp-ts into a Deno specific library at [https://deno.land/x/hkts](https://deno.land/x/hkts). I'm chiming in here to...
Many of the links in the readme are returning 404s. A good editing pass should fix this.
In #31 we changed tryCatch for taskEither to: ```ts declare function tryCatch(task: Task, onThrow: (e: unknown) => B): TaskEither; ``` While working on #39 I finally remembered why I was...
Remove widen from the library and make the default exports for all ADTs widen where appropriate. The canonical algebraic structure exports will have tighter types.
1. All function or const arrow exports should have a short description and an example of use. 2. Don't bother turning const exports into function exports as we are going...
Create a nix flake with packages for build/deployment to npm, testing, coverage reporting, and whatever else we end up needing. This will also require documentation in the README for other...
On push/merge of a commit containing the `release:` conventional commit message, generate a zip file or some other release artifact that is added to the github releases list. Overlaps with...
Hello All, I've been wanting to move the primary development repository off github for awhile. I've been stymied by the lack of standardization for ticketing and documentation (wiki) associated with...
Standard Module Implementation for nonempty_array.ts - [ ] Add file block comment at top of file describing the adt/structure. - [ ] Check for any missing combinators/derivations that could be...