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');
|