Untitled

 avatar
unknown
plain_text
3 years ago
202 B
5
Indexable
//loop throughout subtasks and output code
async function rebaseline() {
    for (const id of issue.subtasks.map(i => i.id)) {
        const task = await getIssue(id);
        debug(task.title);
    }
}
Editor is loading...