Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
25 lines (24 sloc)
582 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Creates a function that invokes `func` with arguments reversed. | |
* | |
* @since 4.0.0 | |
* @category Function | |
* @param {Function} func The function to flip arguments for. | |
* @returns {Function} Returns the new flipped function. | |
* @see reverse | |
* @example | |
* | |
* const flipped = flip((...args) => args) | |
* | |
* flipped('a', 'b', 'c', 'd') | |
* // => ['d', 'c', 'b', 'a'] | |
*/ | |
function flip(func) { | |
if (typeof func !== 'function') { | |
throw new TypeError('Expected a function') | |
} | |
return function(...args) { | |
return func.apply(this, args.reverse()) | |
} | |
} | |
export default flip |