From aad55fc3dbaddeafb7b35d5b89c36070782c586b Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 6 May 2013 07:02:53 -0700 Subject: [PATCH] Fix trailing parenthesis typo. Former-commit-id: a9b4fe7408aa9faa7079656c3cb31a4c655544e6 --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index b9f037911..419cb1a09 100644 --- a/lodash.js +++ b/lodash.js @@ -1958,7 +1958,7 @@ * // => true */ function isRegExp(value) { - return !!(value && objectTypes[typeof value]) && toString.call(value) == regexpClass); + return !!(value && objectTypes[typeof value]) && toString.call(value) == regexpClass; } /**