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