DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
263 Bytes
function count(node) {
var sum = 0,
children = node.children,
i = children && children.length;
if (!i) sum = 1;
else while (--i >= 0) sum += children[i].value;
node.value = sum;
}
export default function() {
return this.eachAfter(count);
}