mirror of
https://github.com/jambonz/jambonz-feature-server.git
synced 2025-12-20 16:50:39 +00:00
4 lines
90 B
JavaScript
4 lines
90 B
JavaScript
module.exports = function(tasks) {
|
|
return `[${tasks.map((t) => t.name).join(',')}]`;
|
|
};
|