DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
238 Bytes
import creator from "../creator.js";
export default function(name) {
var create = typeof name === "function" ? name : creator(name);
return this.select(function() {
return this.appendChild(create.apply(this, arguments));
});
}