is-callable.js 102 B

1234567
  1. // Deprecated
  2. "use strict";
  3. module.exports = function (obj) {
  4. return typeof obj === "function";
  5. };