debian-mirror-gitlab/core-js/internals/a-function.js
2019-12-16 22:33:55 +05:30

5 lines
140 B
JavaScript

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