Returns true if object is a String

返回true,如果是字符串

1 _.isString("moe");
2 => true

源码

1  _.isString = function(obj) {
2     return toString.call(obj) == '[object String]';
3   };

 

 

 

posted on 2012-04-16 23:15  himanhimao  阅读(345)  评论(0编辑  收藏  举报