aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/modules/_a-function.js
blob: 8c35f451472e9435f22a38ff6f73dab6f50141a7 (plain)
1
2
3
4
module.exports = function(it){
  if(typeof it != 'function')throw TypeError(it + ' is not a function!');
  return it;
};