Bump to v4.13.0.

This commit is contained in:
John-David Dalton
2016-05-18 16:00:35 -07:00
parent 07c844053e
commit 35cdf6513b
513 changed files with 2603 additions and 2423 deletions

View File

@@ -1,26 +1,26 @@
import after from './after';
import ary from './ary';
import before from './before';
import bind from './bind';
import bindKey from './bindKey';
import curry from './curry';
import curryRight from './curryRight';
import debounce from './debounce';
import defer from './defer';
import delay from './delay';
import flip from './flip';
import memoize from './memoize';
import negate from './negate';
import once from './once';
import overArgs from './overArgs';
import partial from './partial';
import partialRight from './partialRight';
import rearg from './rearg';
import rest from './rest';
import spread from './spread';
import throttle from './throttle';
import unary from './unary';
import wrap from './wrap';
import after from './after.js';
import ary from './ary.js';
import before from './before.js';
import bind from './bind.js';
import bindKey from './bindKey.js';
import curry from './curry.js';
import curryRight from './curryRight.js';
import debounce from './debounce.js';
import defer from './defer.js';
import delay from './delay.js';
import flip from './flip.js';
import memoize from './memoize.js';
import negate from './negate.js';
import once from './once.js';
import overArgs from './overArgs.js';
import partial from './partial.js';
import partialRight from './partialRight.js';
import rearg from './rearg.js';
import rest from './rest.js';
import spread from './spread.js';
import throttle from './throttle.js';
import unary from './unary.js';
import wrap from './wrap.js';
export default {
after, ary, before, bind, bindKey,