UNPKG

crocks

Version:

A collection of well known Algebraic Datatypes for your utter enjoyment.

10 lines (7 loc) 230 B
/** @license ISC License (c) copyright 2016 original and current authors */ /** @author Ian Hofmann-Hicks (evil) */ // Identity (Idiot) // identity :: a -> a var identity = function (x) { return x; } module.exports = identity