UNPKG

168 BJavaScriptView Raw
1'use strict';
2var isCallable = require('../internals/is-callable');
3
4module.exports = function (it) {
5 return typeof it == 'object' ? it !== null : isCallable(it);
6};