From 9e01cc5705a5b7912a0b82c83ba886d281191b43 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 14 Nov 2014 19:16:14 -0800 Subject: [PATCH] Clarify `_.isFunction` fallback note. [ci skip] --- lodash.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index cc849c31b..55246781f 100644 --- a/lodash.js +++ b/lodash.js @@ -7415,8 +7415,8 @@ 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 modern Safari which returns 'object' for typed array - // constructors. + // regexes and Safari 8 equivalents which return 'object' for typed + // array constructors. return toString.call(value) == funcClass; }; }