From 7a2e45eb3a47506004b1d4d864106645fd7e7740 Mon Sep 17 00:00:00 2001 From: bjh Date: Thu, 26 Jan 2012 15:57:52 -0500 Subject: [PATCH] added documentation for _.isObject --- index.html | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index dd963c707..3aa65a58a 100644 --- a/index.html +++ b/index.html @@ -231,6 +231,7 @@
  • - isNaN
  • - isNull
  • - isUndefined
  • +
  • - isObject
  • @@ -1223,7 +1224,17 @@ _.isNull(undefined); _.isUndefined(window.missingVariable); => true - + +

    + isObject_.isObject(variable) +
    + Returns true if variable is an object. +

    +
    +_.isObject({});
    +=> true
    +
    +

    Utility Functions