Skip to content

Commit bc8db27

Browse files
committed
Add list of related projects
1 parent ead405c commit bc8db27

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

readme.md

+15
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,21 @@ The tree is walked in [preorder][] (NLR), visiting the node itself, then its
7171
[`Node?`][node] — New filtered [tree][].
7272
`null` is returned if `tree` itself didn’t pass the test, or is cascaded away.
7373

74+
## Related
75+
76+
* [`unist-util-visit`](https://github.com/syntax-tree/unist-util-visit)
77+
— Recursively walk over nodes
78+
* [`unist-util-visit-parents`](https://github.com/syntax-tree/unist-util-visit-parents)
79+
— Like `visit`, but with a stack of parents
80+
* [`unist-util-map`](https://github.com/syntax-tree/unist-util-map)
81+
— Create a new tree with all nodes mapped by a given function
82+
* [`unist-util-flatmap`](https://gitlab.com/staltz/unist-util-flatmap)
83+
— Create a new tree by mapping (to an array) by a given function
84+
* [`unist-util-remove`](https://github.com/syntax-tree/unist-util-remove)
85+
— Remove nodes from a tree that pass a test
86+
* [`unist-util-select`](https://github.com/syntax-tree/unist-util-select)
87+
— Select nodes with CSS-like selectors
88+
7489
## Contribute
7590

7691
See [`contributing.md` in `syntax-tree/.github`][contributing] for ways to get

0 commit comments

Comments
 (0)