Add _.conj, _.disj, & _.juxt.

This commit is contained in:
John-David Dalton
2015-09-23 22:45:55 -07:00
parent 12af298e33
commit ee2078f3ea
2 changed files with 90 additions and 2 deletions

View File

@@ -20952,7 +20952,7 @@
var acceptFalsey = _.difference(allMethods, rejectFalsey);
QUnit.test('should accept falsey arguments', function(assert) {
assert.expect(235);
assert.expect(238);
var emptyArrays = _.map(falsey, _.constant([]));
@@ -21023,7 +21023,7 @@
func = _[methodName];
var actual = _.map(falsey, function(value, index) {
var pass = !index && /^(?:backflow|compose|flow(Right)?)$/.test(methodName);
var pass = !index && /^(?:backflow|compose|conj|disj|flow(Right)?)$/.test(methodName);
try {
index ? func(value) : func();