Minor comment format nit. [ci skip]

This commit is contained in:
John-David Dalton
2014-12-27 00:39:39 -06:00
parent 58e14705b5
commit 7f823fe2a8

View File

@@ -7895,9 +7895,8 @@
if (isFunction(/x/) || (Uint8Array && !isFunction(Uint8Array))) {
isFunction = function(value) {
// The use of `Object#toString` avoids issues with the `typeof` operator
// in older versions of Chrome and Safari which return 'function' for
// regexes and Safari 8 equivalents which return 'object' for typed
// array constructors.
// in older versions of Chrome and Safari which return 'function' for regexes
// and Safari 8 equivalents which return 'object' for typed array constructors.
return toString.call(value) == funcClass;
};
}