From fbc7c28188e7462355636a3888bb9a8606dbb708 Mon Sep 17 00:00:00 2001 From: jdalton Date: Tue, 7 Jul 2015 08:18:08 -0700 Subject: [PATCH] Cleanup Safari 8 bug note in `isFunction`. [ci skip] --- lodash.src.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.src.js b/lodash.src.js index 0b214a929..d8912cd7c 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -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; }