MCPcopy
hub / github.com/github/awesome-copilot / getIssueAssignees

Function getIssueAssignees

extensions/backlog-swipe-triage/extension.mjs:125–129  ·  view source on GitHub ↗
(issue)

Source from the content-addressed store, hash-verified

123}
124
125function getIssueAssignees(issue) {
126 return Array.isArray(issue?.assignees)
127 ? issue.assignees.map((assignee) => normalizeText(assignee?.login).toLowerCase()).filter(Boolean)
128 : [];
129}
130
131function issueMatchesFilters(issue, filters) {
132 const now = Date.now();

Callers 1

issueMatchesFiltersFunction · 0.85

Calls 1

normalizeTextFunction · 0.70

Tested by

no test coverage detected