source: frontend/node_modules/symbol-tree/lib/TreePosition.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 241 bytes
Line 
1'use strict';
2
3/* eslint-disable sort-keys */
4module.exports = Object.freeze({
5 // same as DOM DOCUMENT_POSITION_
6 DISCONNECTED: 1,
7 PRECEDING: 2,
8 FOLLOWING: 4,
9 CONTAINS: 8,
10 CONTAINED_BY: 16,
11});
Note: See TracBrowser for help on using the repository browser.