11 lines
142 B
JavaScript
11 lines
142 B
JavaScript
|
|
const UNITS = {
|
||
|
|
english: Symbol('english'),
|
||
|
|
metric: Symbol('metric'),
|
||
|
|
};
|
||
|
|
|
||
|
|
export {
|
||
|
|
UNITS,
|
||
|
|
};
|
||
|
|
|
||
|
|
window.UNITS = UNITS;
|
||
|
|
console.log('config');
|