Partie-2/node_modules/es5-ext/object/valid-callable.js
Simon Priet 9e2991e668 init
2021-09-05 22:53:58 +02:00

7 lines
142 B
JavaScript

"use strict";
module.exports = function (fn) {
if (typeof fn !== "function") throw new TypeError(fn + " is not a function");
return fn;
};