UNPKG

ts-prime

Version:

A utility library for JavaScript and Typescript.

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