Cleanup Safari 8 bug note in isFunction. [ci skip]

This commit is contained in:
jdalton
2015-07-07 08:18:08 -07:00
committed by John-David Dalton
parent 5d88cb7099
commit fbc7c28188

View File

@@ -8866,7 +8866,7 @@
function isFunction(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.
// and Safari 8 which returns 'object' for typed array constructors.
return isObject(value) && objToString.call(value) == funcTag;
}