_.identity(value)
这个方法返回首个提供的参数
value (*)
任何值
返回 value
var object = { 'user': 'fred' }; _.identity(object) === object; // => true