Function: identity

core.lambda.identity(a)
Returns:The argument it’s given.
α → α

The identity combinator. Always returns the argument it’s given.

Examples

1
2
identity(3)          // => 3
identity([1])        // => [1]