UNPKG

pure-fun

Version:

A collection of pure functions/helpers with 0 dependencies

6 lines (5 loc) 175 B
/** * Compose together an array of functions into a higher-order function. */ declare const compose: (...fns: Function[]) => (res: any) => any; export default compose;