UNPKG

di-shan-utils

Version:

JavaScript 函数库、工具类

10 lines (8 loc) 292 B
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