projecte_ionic/node_modules/core-js-pure/internals/is-callable.js
2022-02-09 18:30:03 +01:00

5 lines
160 B
JavaScript
Executable file

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