Add _.rangeRight.

This commit is contained in:
John-David Dalton
2015-12-02 21:42:51 -08:00
parent 3d43cc1029
commit 1ae6e67cdc
2 changed files with 37 additions and 15 deletions

View File

@@ -22570,6 +22570,7 @@
'pullAll',
'pullAt',
'range',
'rangeRight',
'reject',
'remove',
'sampleSize',
@@ -22592,7 +22593,7 @@
var acceptFalsey = lodashStable.difference(allMethods, rejectFalsey);
QUnit.test('should accept falsey arguments', function(assert) {
assert.expect(282);
assert.expect(284);
var emptyArrays = lodashStable.map(falsey, lodashStable.constant([]));
@@ -22630,7 +22631,7 @@
});
QUnit.test('should return an array', function(assert) {
assert.expect(68);
assert.expect(70);
var array = [1, 2, 3];