Assert that a value is a function
$ npm install --save assert-function
var assertFunction = require('assert-function')
assertFunction(function () {})
//=> noop
assertFunction('foo')
// => TypeError: Expected function, got: fooRequired
Type: any
A value to check. A TypeError is throw for non-function values.
MIT © Ben Drucker

