forked from zloirock/core-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
es.array.reduce-right.js
40 lines (38 loc) · 1.58 KB
/
es.array.reduce-right.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import { STRICT } from '../helpers/constants';
import reduceRight from 'core-js-pure/features/array/reduce-right';
QUnit.test('Array#reduceRight', assert => {
assert.isFunction(reduceRight);
const array = [1];
const accumulator = {};
reduceRight(array, function (memo, value, key, that) {
assert.same(arguments.length, 4, 'correct number of callback arguments');
assert.same(memo, accumulator, 'correct callback accumulator');
assert.same(value, 1, 'correct value in callback');
assert.same(key, 0, 'correct index in callback');
assert.same(that, array, 'correct link to array in callback');
}, accumulator);
assert.same(reduceRight([1, 2, 3], ((a, b) => a + b), 1), 7, 'works with initial accumulator');
reduceRight([1, 2], (memo, value, key) => {
assert.same(memo, 2, 'correct default accumulator');
assert.same(value, 1, 'correct start value without initial accumulator');
assert.same(key, 0, 'correct start index without initial accumulator');
});
assert.same(reduceRight([1, 2, 3], (a, b) => a + b), 6, 'works without initial accumulator');
let values = '';
let keys = '';
reduceRight([1, 2, 3], (memo, value, key) => {
values += value;
keys += key;
}, 0);
assert.same(values, '321', 'correct order #1');
assert.same(keys, '210', 'correct order #2');
assert.same(reduceRight({
0: 1,
1: 2,
length: 2,
}, (a, b) => a + b), 3, 'generic');
if (STRICT) {
assert.throws(() => reduceRight(null, () => { /* empty */ }, 1), TypeError);
assert.throws(() => reduceRight(undefined, () => { /* empty */ }, 1), TypeError);
}
});