1module.exports = function (it) { 2 if (typeof it != 'function') throw TypeError(it + ' is not a function!'); 3 return it; 4}; 5