function zip_SMALLER()

in themes/docsy/static/js/deflate.js [344:347]


    function zip_SMALLER(tree, n, m) {
        return tree[n].fc < tree[m].fc ||
            (tree[n].fc == tree[m].fc && zip_depth[n] <= zip_depth[m]);
    }