UNPKG

tamda

Version:

Practical functional programming library for TypeScript

6 lines (5 loc) 145 B
/** * Returns the `item` itself. * @param item Item to be returned by function call. */ export declare function identity<T>(item: T): T;