mirror of
https://github.com/billz/raspap-webgui.git
synced 2023-10-10 13:37:24 +02:00
15 lines
256 B
JavaScript
15 lines
256 B
JavaScript
|
'use strict';
|
||
|
|
||
|
module.exports = function(tasks) {
|
||
|
return Object.keys(tasks)
|
||
|
.reduce(function(prev, task) {
|
||
|
prev.nodes.push({
|
||
|
label: task,
|
||
|
nodes: tasks[task].dep,
|
||
|
});
|
||
|
return prev;
|
||
|
}, {
|
||
|
nodes: [],
|
||
|
});
|
||
|
};
|