mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-05 09:27:49 +00:00
Bump to v4.0.0.
This commit is contained in:
27
flip.js
Normal file
27
flip.js
Normal file
@@ -0,0 +1,27 @@
|
||||
import createWrapper from './internal/createWrapper';
|
||||
|
||||
/** Used to compose bitmasks for wrapper metadata. */
|
||||
var FLIP_FLAG = 512;
|
||||
|
||||
/**
|
||||
* Creates a function that invokes `func` with arguments reversed.
|
||||
*
|
||||
* @static
|
||||
* @memberOf _
|
||||
* @category Function
|
||||
* @param {Function} func The function to flip arguments for.
|
||||
* @returns {Function} Returns the new function.
|
||||
* @example
|
||||
*
|
||||
* var flipped = _.flip(function() {
|
||||
* return _.toArray(arguments);
|
||||
* });
|
||||
*
|
||||
* flipped('a', 'b', 'c', 'd');
|
||||
* // => ['d', 'c', 'b', 'a']
|
||||
*/
|
||||
function flip(func) {
|
||||
return createWrapper(func, FLIP_FLAG);
|
||||
}
|
||||
|
||||
export default flip;
|
||||
Reference in New Issue
Block a user