Skip to content

Instantly share code, notes, and snippets.

View nnasoody's full-sized avatar

Nima Nasoody nnasoody

  • LumiQ
  • San Francisco
View GitHub Profile
@nnasoody
nnasoody / pointfree folktale.js
Created April 14, 2016 14:14 — forked from DrBoolean/pointfree folktale.js
Pointfree fantasy working with folktale's either
require("pointfree-fantasy").expose(global);
var curry = require("lodash.curry");
var fs = require("fs");
var Either = require("data.either");
// HELPERS
// ============
var add = curry(function(x,y) { return x + y });