identity

Util
since 0.1.0

Arguments

  • * Any value.

Returns

* `value`.

This method returns the first argument it receives.

Example of Lodash _.identity

var object = { 'a': 1 };

console.log(_.identity(object) === object);
// => true