UNPKG

@luband/jstools

Version:

前端工具包

3 lines (2 loc) 188 B
export type ConditionFn<T> = (data: T) => boolean; export default function deepSearch<T = any>(list: T[] | T, condition: object | ConditionFn<T>, childrenKey?: string): [T | null, T[]];