- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
12 lines
241 B
JavaScript
12 lines
241 B
JavaScript
'use strict';
|
|
|
|
/* eslint-disable sort-keys */
|
|
module.exports = Object.freeze({
|
|
// same as DOM DOCUMENT_POSITION_
|
|
DISCONNECTED: 1,
|
|
PRECEDING: 2,
|
|
FOLLOWING: 4,
|
|
CONTAINS: 8,
|
|
CONTAINED_BY: 16,
|
|
});
|