// Checks if value is strictly equal to true
export function isTrue(value: boolean): boolean {
  return value === true;
}
