Add _.flip. [closes #1449]

This commit is contained in:
John-David Dalton
2015-09-08 22:48:37 -07:00
parent 2ac6e31cc3
commit 02a28d565b
2 changed files with 29 additions and 2 deletions

View File

@@ -20617,6 +20617,7 @@
'debounce',
'defer',
'delay',
'flip',
'memoize',
'modArgs',
'modArgsSet',
@@ -20740,7 +20741,7 @@
});
QUnit.test('should throw an error for falsey arguments', function(assert) {
assert.expect(24);
assert.expect(25);
_.each(rejectFalsey, function(methodName) {
var expected = _.map(falsey, _.constant(true)),