Fix trailing parenthesis typo.

Former-commit-id: a9b4fe7408aa9faa7079656c3cb31a4c655544e6
This commit is contained in:
John-David Dalton
2013-05-06 07:02:53 -07:00
parent ba2b459220
commit aad55fc3db

View File

@@ -1958,7 +1958,7 @@
* // => true * // => true
*/ */
function isRegExp(value) { function isRegExp(value) {
return !!(value && objectTypes[typeof value]) && toString.call(value) == regexpClass); return !!(value && objectTypes[typeof value]) && toString.call(value) == regexpClass;
} }
/** /**