a-function.js 140 B

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