function canHide()

in src/html_files/utils.ts [70:76]


function canHide(hide, keys, key) {
    let limits = key_limits.get(key);
    if (limits.low == 0 && limits.high == 0 && hide) {
        return true;
    }
    return false;
}