diff --git a/index.html b/index.html index dd963c707..b19f774c5 100644 --- a/index.html +++ b/index.html @@ -231,6 +231,7 @@
+ isObject_.isObject(variable)
+
+ Returns true if variable is an object.
+
+_.isObject({});
+=> true
+_.isObject('am I an object?');
+=> false
+
+