UNPKG

xe-utils-es

Version:

JavaScript 函数库、工具类

10 lines (9 loc) 342 B
/** * 将一个带层级的数据列表转成树结构 * * @param {Array} array 数组 * @param {object} options {strict: false, parentKey: 'parentId', key: 'id', children: 'children', mapChildren: 'children', data: 'data'} * @return {Array} */ declare function toArrayTree(array: any, options: any): any[]; export default toArrayTree;