function checkIsCommonKey()

in src/html_files/utils.ts [139:154]


function checkIsCommonKey(title: string, check_runs, check_common_keys) {
    for (let check_key of check_common_keys) {
        if (check_key == title) {
            return true;
        }
    }
    for (let [key, value] of check_runs) {
        if (value.keys.includes(title)) {
            continue;
        } else {
            return false;
        }
    }
    check_common_keys.push(title);
    return true;
}