Returns true if object is a Date.
如果对象是一个日期类型
1 _.isDate(new Date()); 2 => true
源码:
1 _.isDate = function(obj) { 2 return toString.call(obj) == '[object Date]'; 3 };