create project
This commit is contained in:
11
kitabcitab/node_modules/core-js-pure/internals/is-callable.js
generated
vendored
Normal file
11
kitabcitab/node_modules/core-js-pure/internals/is-callable.js
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
var $documentAll = require('../internals/document-all');
|
||||
|
||||
var documentAll = $documentAll.all;
|
||||
|
||||
// `IsCallable` abstract operation
|
||||
// https://tc39.es/ecma262/#sec-iscallable
|
||||
module.exports = $documentAll.IS_HTMLDDA ? function (argument) {
|
||||
return typeof argument == 'function' || argument === documentAll;
|
||||
} : function (argument) {
|
||||
return typeof argument == 'function';
|
||||
};
|
||||
Reference in New Issue
Block a user