mirror of
https://github.com/actions/setup-python.git
synced 2024-11-06 07:55:52 -05: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,
|
|
});
|