ws4kp/server/scripts/modules/config.mjs

12 lines
177 B
JavaScript
Raw Normal View History

2022-11-22 16:45:17 +00:00
const UNITS = {
english: Symbol('english'),
metric: Symbol('metric'),
};
export {
2022-11-22 22:19:10 +00:00
// eslint-disable-next-line import/prefer-default-export
2022-11-22 16:45:17 +00:00
UNITS,
};
window.UNITS = UNITS;