-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
32 lines (28 loc) · 867 Bytes
/
index.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
import {convert} from 'unist-util-is';
function flatFilterGeneric(node, test) {
const is = convert(test);
if (!node) return [];
if (is(node)) return [node];
if (!node.children) return [];
const acceptedChildren = [];
for (let i = 0; i < node.children.length; i++) {
const child = node.children[i];
const flatFilterResult = flatFilterGeneric(child, test);
if (flatFilterResult && flatFilterResult.length > 0) {
// Take array results and push to the returned array to flatten it
for (const element of flatFilterResult) {
acceptedChildren.push(element);
}
}
}
return acceptedChildren;
}
function flatFilter(node, test) {
const results = flatFilterGeneric(node, test);
if (!results || results.length === 0) return null;
return {
type: 'root',
children: results
};
}
export default flatFilter;