frame-title-has-text-matches.js 199 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 import { sanitize } from '../commons/text'; function frameTitleHasTextMatches(node) { var title = node.getAttribute('title'); return !!sanitize(title); } export default frameTitleHasTextMatches;