
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
提供一系列对树状数组进行深度遍历操作的方法。
export type DeepFilter = (
// 遍历前的树状列表
list: TreeNode[],
// 遍历回调方法
callback: (item: TreeNode, parent?: TreeNode) => boolean,
// 子项字段名,默认 `children`
children?: string,
// 父节点对象,一般不需要外部传入
parent?: TreeNode
) => TreeNode[]; // 遍历后的树状列表
export type DeepSome = (
// 遍历前的树状列表
list: TreeNode[],
// 遍历回调方法
callback: (item: TreeNode, parent?: TreeNode) => boolean,
// 子项字段名,默认 `children`
children?: string,
// 父节点对象,一般不需要外部传入
parent?: TreeNode
) => boolean; // 是否满足
export type DeepEvery = (
// 遍历前的树状列表
list: TreeNode[],
// 遍历回调方法
callback: (item: TreeNode, parent?: TreeNode) => boolean,
// 子项字段名,默认 `children`
children?: string,
// 父节点对象,一般不需要外部传入
parent?: TreeNode
) => boolean; // 是否满足
export type DeepFind = (
// 遍历前的树状列表
list: TreeNode[],
// 遍历回调方法
callback: (item: TreeNode, parent?: TreeNode) => boolean,
// 子项字段名,默认 `children`
children?: string,
// 父节点对象,一般不需要外部传入
parent?: TreeNode
) => TreeNode | undefined; // 匹配项
export type DeepEach = (
// 遍历前的树状列表
list: TreeNode[],
// 遍历回调方法
callback: (item: TreeNode, parent?: TreeNode) => void,
// 子项字段名,默认 `children`
children?: string,
// 父节点对象,一般不需要外部传入
parent?: TreeNode
) => void; // undefined
export type DeepMap = (
// 遍历前的树状列表
list: TreeNode[],
// 遍历回调方法
callback: (item: TreeNode, parent?: TreeNode) => TreeNode,
// 子项字段名,默认 `children`
children?: string,
// 父节点对象,一般不需要外部传入
parent?: TreeNode
) => TreeNode[]; // 遍历后的树状列表
export type TreeNode = {
[key: string]: any;
// 子节点字段名由 children 参数决定
};
FAQs
We found that deep-tree demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.