qauMaWeb/node_modules/core-js/internals/is-callable.js

6 lines
160 B
JavaScript

// `IsCallable` abstract operation
// https://tc39.es/ecma262/#sec-iscallable
module.exports = function (argument) {
return typeof argument == 'function';
};