Bump to v4.14.0.

This commit is contained in:
John-David Dalton
2016-07-24 09:52:22 -07:00
parent 6b3e0da93c
commit 51ed7e7707
231 changed files with 1136 additions and 820 deletions

View File

@@ -1,5 +1,5 @@
import baseDelay from './_baseDelay.js';
import rest from './rest.js';
import baseRest from './_baseRest.js';
/**
* Defers invoking the `func` until the current call stack has cleared. Any
@@ -19,7 +19,7 @@ import rest from './rest.js';
* }, 'deferred');
* // => Logs 'deferred' after one or more milliseconds.
*/
var defer = rest(function(func, args) {
var defer = baseRest(function(func, args) {
return baseDelay(func, 1, args);
});