mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-12-20 12:32:47 -05:00
7 lines
91 B
JavaScript
7 lines
91 B
JavaScript
|
const OS_ENUM = {
|
||
|
WINDOWS: 'Windows',
|
||
|
MACOS: 'macOS'
|
||
|
};
|
||
|
|
||
|
module.exports = OS_ENUM;
|