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