refactor: Rename function

This commit is contained in:
syuilo
2020-07-28 09:36:43 +09:00
parent 0efa969a15
commit a8adc46f3b
9 changed files with 17 additions and 17 deletions

View File

@ -1,4 +1,4 @@
export default function(note: any, mutedUserIds: string[]): boolean {
export function isMutedUserRelated(note: any, mutedUserIds: string[]): boolean {
if (mutedUserIds.includes(note.userId)) {
return true;
}