Gathering detailed insights and metrics for unist-util-visit-children
Gathering detailed insights and metrics for unist-util-visit-children
Gathering detailed insights and metrics for unist-util-visit-children
Gathering detailed insights and metrics for unist-util-visit-children
unist utility to visit direct children of a parent
npm install unist-util-visit-children
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
8 Stars
90 Commits
1 Forks
10 Watching
1 Branches
11 Contributors
Updated on 19 Jan 2024
Minified
Minified + Gzipped
JavaScript (80.03%)
TypeScript (19.97%)
Cumulative downloads
Total Downloads
Last day
5.2%
92,735
Compared to previous day
Last week
3.2%
507,775
Compared to previous week
Last month
12.4%
2,086,091
Compared to previous month
Last year
58.6%
19,258,886
Compared to previous year
1
unist utility to visit direct children of a parent.
This is a tiny utility that you can use to create a reusable function that only visits direct children.
Probably never!
Use unist-util-visit
.
This package is ESM only. In Node.js (version 16+), install with npm:
1npm install unist-util-visit-children
In Deno with esm.sh
:
1import {visitChildren} from 'https://esm.sh/unist-util-visit-children@3'
In browsers with esm.sh
:
1<script type="module"> 2 import {visitChildren} from 'https://esm.sh/unist-util-visit-children@3?bundle' 3</script>
1import u from 'unist-builder' 2import {visitChildren} from 'unist-util-visit-children' 3 4const visit = visitChildren(function (node) { 5 console.log(node) 6}) 7 8const tree = u('tree', [ 9 u('leaf', 'leaf 1'), 10 u('node', [u('leaf', 'leaf 2'), u('leaf', 'leaf 3')]), 11 u('leaf', 'leaf 4'), 12 u('void') 13]) 14 15visit(tree)
Yields:
1{type: 'leaf', value: 'leaf 1'} 2{ 3 type: 'node', 4 children: [ 5 {type: 'leaf', value: 'leaf 2'}, 6 {type: 'leaf', value: 'leaf 3'} 7 ] 8} 9{type: 'leaf', value: 'leaf 4'} 10{type: 'void'}
This package exports the identifier visitChildren
.
There is no default export.
visitChildren(visitor)
Wrap visitor
to be called for each child in the nodes later given to visit
.
visitor
(Visitor
)
— callback called for each child
in parent
later given to visit
Function to call the bound visitor
for each child in parent
(Visit
).
Visitor
Callback called for each child
in parent
later given to visit
(TypeScript type).
child
(Node
)
— child of parentindex
(number
)
— position of child
in parentparent
(Node
)
— parent nodeNothing (undefined
).
Visit
Function to call the bound visitor
for each child in parent
(TypeScript type).
parent
(Node
)
— parent nodeNothing (undefined
).
This package is fully typed with TypeScript.
It exports the additional types Visit
and
Visitor
.
Projects maintained by the unified collective are compatible with maintained versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
unist-util-visit-children@^3
, compatible with Node.js 16.
unist-util-visit
— walk the treeunist-util-visit-parents
— walk the tree with a stack of parentsunist-util-filter
— create a new tree with all nodes that pass a testunist-util-map
— create a new tree with all nodes mapped by a given functionunist-util-flatmap
— create a new tree by mapping (to an array) with the given functionunist-util-find-all-after
— find nodes after another nodeunist-util-find-all-before
— find nodes before another nodeunist-util-find-after
— find a node after another nodeunist-util-find-before
— find a node before another nodeunist-util-find-all-between
— find all nodes between two nodesunist-util-remove
— remove nodes from a tree that pass a testunist-util-select
— select nodes with CSS-like selectorsSee contributing.md
in syntax-tree/.github
for
ways to get started.
See support.md
for ways to get help.
This project has a code of conduct. By interacting with this repository, organisation, or community you agree to abide by its terms.
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
security policy file detected
Details
Reason
Found 1/30 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
Project has not signed or included provenance with any releases.
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2024-11-18
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More