identity
Returns the given value.
function identity<T>(value: T): T;
Example
identity(5); // 5
identity('Hello, world!'); // 'Hello, world!'
identity({ foo: 'bar' }); // { foo:'bar' }
Returns the given value.
function identity<T>(value: T): T;
identity(5); // 5
identity('Hello, world!'); // 'Hello, world!'
identity({ foo: 'bar' }); // { foo:'bar' }