UNPKG

309 BTypeScriptView Raw
1/**
2 * Safe chained function
3 *
4 * Will only create a new function if needed,
5 * otherwise will pass back existing functions or null.
6 *
7 * @param {function} functions to chain
8 * @returns {function|null}
9 */
10declare function createChainedFunction(...funcs: any[]): any;
11export default createChainedFunction;