summaryrefslogtreecommitdiff
path: root/src/misc/is-quote.ts
blob: 2b57f036a218474d6d3dc9b3c2169d1744fbb3bc (plain)
1
2
3
4
5
import { Note } from '@/models/entities/note';

export default function(note: Note): boolean {
	return note.renoteId != null && (note.text != null || note.hasPoll || (note.fileIds != null && note.fileIds.length > 0));
}