is-callable.js 160 B

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