create project
This commit is contained in:
10
kitabcitab/node_modules/core-js-pure/internals/is-object.js
generated
vendored
Normal file
10
kitabcitab/node_modules/core-js-pure/internals/is-object.js
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
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);
|
||||
};
|
||||
Reference in New Issue
Block a user