/** * Evaluates two boolean values value1 and value2 for equality and returns * true if both values match. */ export const booleanEquals = (value1: boolean, value2: boolean): boolean => value1 === value2;