export default function(sel, el) {
// basic DOM closest utility to cope with no support
// TODO: instead of degrading gracefully
// add a while polyfill for closest
try {
return el.closest(sel);
} catch (e) {
return;
}