We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
isConversation
1 parent d023280 commit 25e2e70Copy full SHA for 25e2e70
index.ts
@@ -106,6 +106,9 @@ collect.set('isIssue', [
106
export const isConversationList = (url: URL | Location = location): boolean => isGlobalConversationList(url) || isRepoConversationList(url);
107
collect.set('isConversationList', combinedTestOnly);
108
109
+export const isConversation = (url: URL | Location = location): boolean => isIssue(url) || isPRConversation(url);
110
+collect.set('isConversation', combinedTestOnly);
111
+
112
export const isLabelList = (url: URL | Location = location): boolean => getRepoPath(url) === 'labels';
113
collect.set('isLabelList', [
114
'https://github.com/sindresorhus/refined-github/labels',
0 commit comments