UNPKG

tricks

Version:
11 lines (9 loc) 182 B
import until from './until.js'; import matches from './matches.js'; export default (elements, match) => until(elements, el => { if (matches(el, match)) { return el; } }) ;