UNPKG

pure-fun

Version:

A collection of pure functions/helpers with 0 dependencies

6 lines (5 loc) 190 B
/** * Merge together functions into a combined output: fn(f(), g()) */ declare const merge: (fn: Function, f: Function, g: Function) => (...args: any[]) => any; export default merge;