
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
unist-util-reduce
Advanced tools
Parse unist trees, and map over nodes that pass a predicate function
unist utility to recursively reduce a tree
npm:
npm install unist-util-reduce
const u = require("unist-builder");
const reduce = require("unist-util-reduce");
const assert = require("assert");
const tree = u("tree", [
u("leaf", "1"),
u("node", [u("leaf", "2")]),
u("void"),
u("leaf", "3")
]);
const newTree = reduce(tree, function(node) {
if (node.value === "2") {
const duplicateNode = { ...node, value: "two" };
return [duplicateNode, node];
}
return node;
});
const expected = u("tree", [
u("leaf", "1"),
u("node", [u("leaf", "two"), u("leaf", "2")]),
u("void"),
u("leaf", "3")
]);
assert.deepEqual(newTree, expected);
NOTE: leaf
with value
2
is visited before it's parent node
. By the
time your transform
function is invoked, it's children
will already have
been passed through transform
.
reduce(tree, transform)
tree
- A node of type Parent
transform
- A function with the signature:
(node: Node, path: number[], root: Paretn) => Node | Node[]
node
- The Node
in the tree to be transformedpath
- The path to reach this node in each level of the treeroot
- The Parent
root node.concat()
on the children
array of the node's parent.unist-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-remove
— Remove nodes from a tree that pass a testunist-util-select
— Select nodes with CSS-like selectorsFAQs
Parse unist trees, and map over nodes that pass a predicate function
The npm package unist-util-reduce receives a total of 76 weekly downloads. As such, unist-util-reduce popularity was classified as not popular.
We found that unist-util-reduce demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.