( post: Pick<Post, 'createdAt' | 'updatedAt'>, )
| 97 | isSocialTwitterPost(post) || isSocialTwitterPost(post?.sharedPost as Post); |
| 98 | |
| 99 | export const isPostUpdated = ( |
| 100 | post: Pick<Post, 'createdAt' | 'updatedAt'>, |
| 101 | ): boolean => !!post.updatedAt && post.updatedAt !== post.createdAt; |
| 102 | |
| 103 | /** |
| 104 | * For social:twitter quote posts, resolve to the top tweet (the post itself) |
no outgoing calls
no test coverage detected