Bump to v4.2.1.

This commit is contained in:
John-David Dalton
2016-02-03 00:54:36 -08:00
parent 365d103439
commit f18e5950b9
11 changed files with 21 additions and 13 deletions

View File

@@ -38,7 +38,9 @@ var PARTIAL_FLAG = 32;
* // => 'hi fred'
*/
var partial = rest(function(func, partials) {
var holders = replaceHolders(partials, partial.placeholder);
var placeholder = partial.placeholder,
holders = replaceHolders(partials, placeholder);
return createWrapper(func, PARTIAL_FLAG, undefined, partials, holders);
});