Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

TreePosition.js 241B

1234567891011
  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. });