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