iceshrimp-legacy/src/misc/is-quote.ts

6 lines
221 B
TypeScript
Raw Normal View History

2018-07-20 22:35:43 +02:00
import { INote } from '../models/note';
export default function(note: INote): boolean {
return note.renoteId != null && (note.text != null || note.poll != null || (note.mediaIds != null && note.mediaIds.length > 0));
}