DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
421 Bytes
import {childMatcher} from "../matcher.js";
var filter = Array.prototype.filter;
function children() {
return Array.from(this.children);
}
function childrenFilter(match) {
return function() {
return filter.call(this.children, match);
};
}
export default function(match) {
return this.selectAll(match == null ? children
: childrenFilter(typeof match === "function" ? match : childMatcher(match)));
}