UNPKG

@matthewp/linkedom

Version:

A triple-linked lists based DOM implementation

16 lines (14 loc) 369 B
'use strict'; const { SHOW_ALL, SHOW_ELEMENT, SHOW_COMMENT, SHOW_TEXT } = require('../shared/constants.js'); 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; } } exports.NodeFilter = NodeFilter