export function isEqualBoolean(a: boolean, b: boolean): boolean {
    return a === b;
}