forked from ramda/ramda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfindLast.js
46 lines (37 loc) · 1.38 KB
/
findLast.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
41
42
43
44
45
46
var R = require('../source/index.js');
var eq = require('./shared/eq.js');
var listXf = require('./helpers/listXf.js');
describe('findLast', function() {
var obj1 = {x: 100};
var obj2 = {x: 200};
var a = [11, 10, 9, 'cow', obj1, 8, 7, 100, 200, 300, obj2, 4, 3, 2, 1, 0];
var even = function(x) { return x % 2 === 0; };
var gt100 = function(x) { return x > 100; };
var isStr = function(x) { return typeof x === 'string'; };
var xGt100 = function(o) { return o && o.x > 100; };
it('returns the index of the last element that satisfies the predicate', function() {
eq(R.findLast(even, a), 0);
eq(R.findLast(gt100, a), 300);
eq(R.findLast(isStr, a), 'cow');
eq(R.findLast(xGt100, a), obj2);
});
it('returns `undefined` when no element satisfies the predicate', function() {
eq(R.findLast(even, ['zing']), undefined);
});
it('works when the first element matches', function() {
eq(R.findLast(even, [2, 3, 5]), 2);
});
it('does not go into an infinite loop on an empty array', function() {
eq(R.findLast(even, []), undefined);
});
it('dispatches to transformer objects', function() {
eq(R.findLast(R.identity, listXf), {
f: R.identity,
xf: listXf
});
});
it('can act as a transducer', function() {
eq(R.into([], R.findLast(even), a), [0]);
eq(R.transduce(R.findLast(even), R.flip(R.append), [], a), [0]);
});
});