is-callable.js 101 B

12345
  1. // Deprecated
  2. 'use strict';
  3. module.exports = function (obj) { return typeof obj === 'function'; };