Remove semicolons.

This commit is contained in:
John-David Dalton
2017-02-04 23:50:10 -08:00
parent f3a8e55e70
commit 6cb3460fce
452 changed files with 4261 additions and 4261 deletions

12
flip.js
View File

@@ -1,7 +1,7 @@
import createWrap from './.internal/createWrap.js';
import createWrap from './.internal/createWrap.js'
/** Used to compose bitmasks for function metadata. */
const WRAP_FLIP_FLAG = 512;
const WRAP_FLIP_FLAG = 512
/**
* Creates a function that invokes `func` with arguments reversed.
@@ -13,13 +13,13 @@ const WRAP_FLIP_FLAG = 512;
* @see reverse
* @example
*
* const flipped = flip((...args) => args);
* const flipped = flip((...args) => args)
*
* flipped('a', 'b', 'c', 'd');
* flipped('a', 'b', 'c', 'd')
* // => ['d', 'c', 'b', 'a']
*/
function flip(func) {
return createWrap(func, WRAP_FLIP_FLAG);
return createWrap(func, WRAP_FLIP_FLAG)
}
export default flip;
export default flip