UNPKG

nyg-static-jam3

Version:

Jam3 frontend static project scaffold generator based on nyg

8 lines (7 loc) 224 B
/** * Function composer for combining multiple higher order components * * @param {number} functions * @returns {Function} */ export default (...funcs) => target => funcs.reduce((result, func) => func(result), target);