All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.amd.isObject.js Maven / Gradle / Ivy

The newest version!
define(function () {

  // Is a given variable an object?
  function isObject(obj) {
    var type = typeof obj;
    return type === 'function' || (type === 'object' && !!obj);
  }

  return isObject;

});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy