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

6 lines
160 B
JavaScript
Raw Normal View History

2024-10-13 18:02:27 +08:00
// `IsCallable` abstract operation
// https://tc39.es/ecma262/#sec-iscallable
module.exports = function (argument) {
return typeof argument == 'function';
};