export function convertToNewPostWithAllDetails (RawData?: RawPostWithAllDetails): PostWithAllDetails | undefined {
  return !RawData ? undefined : convertToNewPostWithAllDetailsArray([ RawData ])[0]
}