export function checkEnumState(status: {[key: string]: {}}, comparator: string): boolean {
    if(status.hasOwnProperty(comparator)) return true;
}