export function isCurrentlyInSuperMode()

in super-mode-calculator/src/superMode.ts [5:12]


export function isCurrentlyInSuperMode(
	row: QueryRow,
	activeArticles: DynamoRecord[],
): boolean {
	return activeArticles.some(
		(a) => a.url == row.url && a.region == row.region,
	);
}