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