DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
170 Bytes
export default function() {
var data = [];
this.visit(function(node) {
if (!node.length) do data.push(node.data); while (node = node.next)
});
return data;
}