Front end of the Slack clone application.

is-callable.js 102B

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