UNPKG

rubico

Version:

[a]synchronous functional programming

12 lines (11 loc) 186 B
export = identity; /** * @name identity * * @synopsis * identity(value any) -> value * * @description * Returns the first argument */ declare function identity(value: any): any;