export function getFirstPublishedDate()

in lib/recipes-data/src/lib/extract-recipes.ts [83:92]


export function getFirstPublishedDate(
	block: Block,
	content: Content,
): Date | undefined {
	return block.firstPublishedDate
		? capiDateTimeToDate(block.firstPublishedDate)
		: content.fields?.firstPublicationDate
		? capiDateTimeToDate(content.fields.firstPublicationDate)
		: undefined;
}