UNPKG

core-js

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