UNPKG

parallel-es

Version:
9 lines (8 loc) 195 B
/** * identity function. Returns the passed in value * @param element the value to return * @param T type of the element */ export function identity<T>(element: T): T { return element; }