From 7f823fe2a8f694cf9599694b25fc84278fd3d028 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sat, 27 Dec 2014 00:39:39 -0600 Subject: [PATCH] Minor comment format nit. [ci skip] --- lodash.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lodash.js b/lodash.js index ee63a3935..6ddb1cf4a 100644 --- a/lodash.js +++ b/lodash.js @@ -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; }; }