2018-08-24 18:09:42 +02:00

4 lines
120 B
JavaScript

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