blob: c977527a4fd6606e1acace279a94184a861146c1 [file] [log] [blame]
'use strict';
module.exports = function (fn) {
if (typeof fn !== 'function') throw new TypeError(fn + " is not a function");
return fn;
};