mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-07 18:07:49 +00:00
Bump to v3.8.0.
This commit is contained in:
@@ -29,7 +29,7 @@ define(['../internal/isObjectLike'], function(isObjectLike) {
|
||||
* // => false
|
||||
*/
|
||||
function isRegExp(value) {
|
||||
return (isObjectLike(value) && objToString.call(value) == regexpTag) || false;
|
||||
return isObjectLike(value) && objToString.call(value) == regexpTag;
|
||||
}
|
||||
|
||||
return isRegExp;
|
||||
|
||||
Reference in New Issue
Block a user