Gathering detailed insights and metrics for unist-util-modify-children
Gathering detailed insights and metrics for unist-util-modify-children
Gathering detailed insights and metrics for unist-util-modify-children
Gathering detailed insights and metrics for unist-util-modify-children
utility to modify direct children of a parent
npm install unist-util-modify-children
99
Supply Chain
99.4
Quality
78
Maintenance
100
Vulnerability
100
License
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
11 Stars
96 Commits
4 Forks
10 Watching
1 Branches
11 Contributors
Updated on 02 May 2024
Minified
Minified + Gzipped
JavaScript (85.84%)
TypeScript (14.16%)
Cumulative downloads
Total Downloads
Last day
-1.9%
94,979
Compared to previous day
Last week
2.3%
570,761
Compared to previous week
Last month
11.7%
2,313,781
Compared to previous month
Last year
50.6%
21,895,259
Compared to previous year
2
unist utility to change children of a parent.
This is a tiny utility that you can use to create a reusable function that modifies children.
Probably never!
Use unist-util-visit
.
This package is ESM only. In Node.js (version 16+), install with npm:
1npm install unist-util-modify-children
In Deno with esm.sh
:
1import {modifyChildren} from 'https://esm.sh/unist-util-modify-children@4'
In browsers with esm.sh
:
1<script type="module"> 2 import {modifyChildren} from 'https://esm.sh/unist-util-modify-children@4?bundle' 3</script>
1import u from 'unist-builder' 2import {modifyChildren} from 'unist-util-modify-children' 3 4const tree = u('root', [ 5 u('leaf', '1'), 6 u('parent', [u('leaf', '2')]), 7 u('leaf', '3') 8]) 9const modify = modifyChildren(function (node, index, parent) { 10 if (node.type === 'parent') { 11 parent.children.splice(index, 1, {type: 'subtree', children: parent.children}) 12 return index + 1 13 } 14}) 15 16modify(tree) 17 18console.dir(tree, {depth: undefined})
Yields:
1{ 2 type: 'root', 3 children: [ 4 {type: 'leaf', value: '1'}, 5 {type: 'subtree', children: [{type: 'leaf', value: '2'}]}, 6 {type: 'leaf', value: '3'} 7 ] 8}
This package exports the identifier modifyChildren
.
There is no default export.
modifyChildren(modifier)
Wrap modifier
to be called for each child in the nodes later given to
modify
.
modifier
(Modifier
)
— callback called for each child
in parent
later given to modify
Modify children of parent
(Modify
).
Modifier
Callback called for each child
in parent
later given to modify
(TypeScript type).
child
(Node
)
— child of parent
index
(number
)
— position of child
in parent
parent
(Node
)
— parent nodePosition to move to next (optional) (number
or undefined
).
Modify
Modify children of parent
(TypeScript type).
parent
(Node
)
— parent nodeNothing (undefined
).
This package is fully typed with TypeScript.
It exports the additional types Modifier
and
Modify
.
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-modify-children@^4
, 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-after
— find a node after another nodeunist-util-find-before
— find a node before another nodeunist-util-find-all-after
— find all nodes after another nodeunist-util-find-all-before
— find all nodes 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, organization, or community you agree to abide by its terms.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
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
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
Project has not signed or included provenance with any releases.
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