服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

_.identity(value)

这个方法返回它接收到的第一个参数。

以来

0.1.0

参数
  1. value (*):任何值。
返回

(*):返回value

var object = { 'a': 1 };
 

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