
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
unist-util-reduce
Advanced tools
Parse unist trees, and map over nodes that pass a predicate function
Supply Chain Security
Vulnerability
Quality
Maintenance
License
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 96 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.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.