Files
safari-hunt/node_modules/core-js/modules/_a-function.js
Vahagn Khachatryan 4fa4328740 Configring node js.
2018-12-07 15:58:35 +00:00

4 lines
120 B
JavaScript

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