UNPKG

pure-fun

Version:

A collection of pure functions/helpers with 0 dependencies

6 lines (5 loc) 138 B
/** * Validate if given input is a callable function */ declare const isFunction: (fn: any) => boolean; export default isFunction;