Returns true if object is a RegExp.

返回true,如果是一个正则表达式

1 _.isRegExp(/moe/);
2 => true

源码:

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

 

 

 

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