Newer
Older
vmk-demo-bot / admin / node_modules / es5-ext / object / valid-callable.js
@eugene-sukhodolskiy eugene-sukhodolskiy 18 days ago 142 bytes init
"use strict";

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