diff --git a/index.html b/index.html index dd963c707..b19f774c5 100644 --- a/index.html +++ b/index.html @@ -231,6 +231,7 @@
  • - isNaN
  • - isNull
  • - isUndefined
  • +
  • - isObject
  • @@ -1223,7 +1224,19 @@ _.isNull(undefined); _.isUndefined(window.missingVariable); => true - + +

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

    +
    +_.isObject({});
    +=> true
    +_.isObject('am I an object?');
    +=> false
    +
    +

    Utility Functions