mirror of
https://github.com/cachix/install-nix-action.git
synced 2024-11-22 08:30:51 +00:00
11 lines
241 B
JavaScript
11 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,
|
|
});
|