UNPKG

ts-prime

Version:

A utility library for JavaScript and Typescript.

10 lines (9 loc) 165 B
/** * Return same value * @description * Function that returns provided value * @category Function */ export function identity<T>(value: T) { return value; }