]> git.r.bdr.sh - rbdr/dotfiles/blob
05fdee2c3debda91e5c8e1324c62069f6c05558a
[rbdr/dotfiles] /
1 'use strict';
2
3 var isFunction = require('./is-function');
4
5 module.exports = function (x) {
6 if (!isFunction(x)) throw new TypeError(x + " is not a function");
7 return x;
8 };