NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/xe-utils/methods/array/helperCreateTreeFunc.js
2023-09-14 14:47:11 +08:00

10 lines
292 B
Java

function helperCreateTreeFunc (handle) {
return function (obj, iterate, options, context) {
var opts = options || {}
var optChildren = opts.children || 'children'
return handle(null, obj, iterate, context, [], [], optChildren, opts)
}
}
module.exports = helperCreateTreeFunc