projecte_ionic/node_modules/core-js/internals/a-function.js
2022-02-09 18:30:03 +01:00

6 lines
140 B
JavaScript
Executable file

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