hensei-web/node_modules/core-js/modules/_a-function.js
2020-09-11 06:44:42 -07:00

4 lines
125 B
JavaScript

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