Add _.curryRight.

This commit is contained in:
John-David Dalton
2014-06-24 00:13:54 -07:00
parent 4105b19f75
commit b291dcadc6
2 changed files with 102 additions and 48 deletions

View File

@@ -11142,6 +11142,7 @@
'bind',
'compose',
'curry',
'curryRight',
'debounce',
'defer',
'delay',
@@ -11223,7 +11224,7 @@
});
});
test('should throw a TypeError for falsey arguments', 15, function() {
test('should throw a TypeError for falsey arguments', 16, function() {
_.each(rejectFalsey, function(methodName) {
var expected = _.map(falsey, _.constant(true)),
func = _[methodName];