Leon4gr45's picture
Upload folder using huggingface_hub (part 8)
e7b2eb4 verified
Raw
History Blame Contribute Delete
388 Bytes
import "selection";
d3_selectionPrototype.text = function(value) {
return arguments.length
? this.each(typeof value === "function"
? function() { var v = value.apply(this, arguments); this.textContent = v == null ? "" : v; } : value == null
? function() { this.textContent = ""; }
: function() { this.textContent = value; })
: this.node().textContent;
};