UNPKG

rubico

Version:

[a]synchronous functional programming

13 lines (11 loc) 182 B
/** * @name identity * * @synopsis * identity(value any) -> value * * @description * Returns the first argument */ const identity = value => value module.exports = identity