mirror of
https://github.com/jambonz/jambonz-feature-server.git
synced 2026-02-13 09:49:30 +00:00
4 lines
90 B
JavaScript
4 lines
90 B
JavaScript
module.exports = function(tasks) {
|
|
return `[${tasks.map((t) => t.name).join(',')}]`;
|
|
};
|