mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-09 18:37:50 +00:00
Minor comment format nit. [ci skip]
This commit is contained in:
@@ -7895,9 +7895,8 @@
|
|||||||
if (isFunction(/x/) || (Uint8Array && !isFunction(Uint8Array))) {
|
if (isFunction(/x/) || (Uint8Array && !isFunction(Uint8Array))) {
|
||||||
isFunction = function(value) {
|
isFunction = function(value) {
|
||||||
// The use of `Object#toString` avoids issues with the `typeof` operator
|
// The use of `Object#toString` avoids issues with the `typeof` operator
|
||||||
// in older versions of Chrome and Safari which return 'function' for
|
// in older versions of Chrome and Safari which return 'function' for regexes
|
||||||
// regexes and Safari 8 equivalents which return 'object' for typed
|
// and Safari 8 equivalents which return 'object' for typed array constructors.
|
||||||
// array constructors.
|
|
||||||
return toString.call(value) == funcClass;
|
return toString.call(value) == funcClass;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user