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 };