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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy