UNPKG

page-parser-tree

Version:

Library to find elements in a dynamic web page

10 lines (7 loc) 203 B
/* @flow */ import matchesSelector from 'matches-selector-ng'; export default function createCssFn( selector: string ): (el: HTMLElement) => boolean { return el => matchesSelector(el, selector); }