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

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