/** * Performs logical negation on the provided boolean value, * returning the negated value. */ export const not = (value: boolean) => !value;