This method just returns the first argument.
var res1 = _.identity(10, 20);
// res1 now is 10
var res2 = _.identity("hello", "world");
// res2 now is "hello"
What does _.identity mean in lodash documentation?
This method is used throughout lodash documentation...