@matthewp/linkedom
Version:
A triple-linked lists based DOM implementation
14 lines (12 loc) • 325 B
JavaScript
import {
SHOW_ALL,
SHOW_ELEMENT,
SHOW_COMMENT,
SHOW_TEXT
} from '../shared/constants.js';
export class NodeFilter {
static get SHOW_ALL() { return SHOW_ALL; }
static get SHOW_ELEMENT() { return SHOW_ELEMENT; }
static get SHOW_COMMENT() { return SHOW_COMMENT; }
static get SHOW_TEXT() { return SHOW_TEXT; }
}