Bump to v4.2.1.

This commit is contained in:
John-David Dalton
2016-02-03 00:57:54 -08:00
parent 5ca813254d
commit e2a6db008f
10 changed files with 39 additions and 23 deletions

View File

@@ -38,7 +38,9 @@ define(['./_createWrapper', './_replaceHolders', './rest'], function(createWrapp
* // => 'hello fred'
*/
var partialRight = rest(function(func, partials) {
var holders = replaceHolders(partials, partialRight.placeholder);
var placeholder = partialRight.placeholder,
holders = replaceHolders(partials, placeholder);
return createWrapper(func, PARTIAL_RIGHT_FLAG, undefined, partials, holders);
});