-
Notifications
You must be signed in to change notification settings - Fork 1
/
find.js
76 lines (60 loc) · 1.56 KB
/
find.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
"use strict";
var makeCheck = require('./makeCheck');
var isNotEmpty = require('./is').isNotEmpty;
// ---
exports.findInBetween = findInBetween;
function findInBetween(startToken, endToken, check) {
check = makeCheck(check);
var found;
var last = endToken && endToken.next;
while (startToken && startToken !== last && !found) {
if (check(startToken)) {
found = startToken;
}
startToken = startToken.next;
}
return found;
}
exports.findInBetweenFromEnd = findInBetweenFromEnd;
function findInBetweenFromEnd(startToken, endToken, check) {
check = makeCheck(check);
var found;
var last = startToken && startToken.prev;
while (endToken && endToken !== last && !found) {
if (check(endToken)) {
found = endToken;
}
endToken = endToken.prev;
}
return found;
}
exports.findNext = findNext;
function findNext(startToken, check) {
check = makeCheck(check);
startToken = startToken && startToken.next;
while (startToken) {
if (check(startToken)) {
return startToken;
}
startToken = startToken.next;
}
}
exports.findPrev = findPrev;
function findPrev(endToken, check) {
check = makeCheck(check);
endToken = endToken && endToken.prev;
while (endToken) {
if (check(endToken)) {
return endToken;
}
endToken = endToken.prev;
}
}
exports.findNextNonEmpty = findNextNonEmpty;
function findNextNonEmpty(startToken) {
return findNext(startToken, isNotEmpty);
}
exports.findPrevNonEmpty = findPrevNonEmpty;
function findPrevNonEmpty(endToken) {
return findPrev(endToken, isNotEmpty);
}