Determine if a value is a Function
Pass in a value and get a boolean telling you if the value is a function.
import * as _ from 'radashi' _.isFunction('hello') // => false_.isFunction(['hello']) // => false_.isFunction(() => 'hello') // => true