DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
211 Bytes
export default function(selector) {
return function() {
return this.matches(selector);
};
}
export function childMatcher(selector) {
return function(node) {
return node.matches(selector);
};
}