_a-function.js 125 B

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