uquill
v1.1.0
Published
A utility library
Downloads
4
Readme
uQuill
A functional utility library
Why does this exist?
I'm trying to learn the in's and out's of functional programming, so I'm
creating this library in an attempt to better understand the fundamentals.
Is this compatible with the Fantasy Land spec?
At this time, no. Plans are to fall in line with the specification once
I've understood how the internals work.
How do I use this?
The project is written using the es2015 module system. Currently, the best
approach is to use @std/esm
in node:
index.js
require('@std/esm')(module)('./app.mjs')
app.mjs
// default import
import uquill from 'uquill'
// named imports
import {
compose,
Either,
Left,
Right,
Task
} from 'uquill'
npm i -S uquill @std/esm
node index.js