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

package.internals.is-object.js Maven / Gradle / Ivy

There is a newer version: 3.39.0
Show newest version
'use strict';
var isCallable = require('../internals/is-callable');
var $documentAll = require('../internals/document-all');

var documentAll = $documentAll.all;

module.exports = $documentAll.IS_HTMLDDA ? function (it) {
  return typeof it == 'object' ? it !== null : isCallable(it) || it === documentAll;
} : function (it) {
  return typeof it == 'object' ? it !== null : isCallable(it);
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy