mirror of
https://github.com/netbymatt/ws4kp.git
synced 2026-04-17 00:59:29 -07:00
12 lines
142 B
JavaScript
12 lines
142 B
JavaScript
const UNITS = {
|
|
english: Symbol('english'),
|
|
metric: Symbol('metric'),
|
|
};
|
|
|
|
export {
|
|
UNITS,
|
|
};
|
|
|
|
window.UNITS = UNITS;
|
|
console.log('config');
|