You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
241 B

  1. 'use strict';
  2. /* eslint-disable sort-keys */
  3. module.exports = Object.freeze({
  4. // same as DOM DOCUMENT_POSITION_
  5. DISCONNECTED: 1,
  6. PRECEDING: 2,
  7. FOLLOWING: 4,
  8. CONTAINS: 8,
  9. CONTAINED_BY: 16,
  10. });