Skip to content

Instantly share code, notes, and snippets.

@flazz
Created October 31, 2013 19:43
Show Gist options
  • Save flazz/7255621 to your computer and use it in GitHub Desktop.
Save flazz/7255621 to your computer and use it in GitHub Desktop.
codata in js
var hof = function (z, f) {
var x = f(z);
return {
h: function() { return x; },
t: function() { return hof(x, f); }
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment