In ES6 I can export a simple foo
constant:
export const foo = 1;
I can also convert the value of that export (1
) to a variable, and export that:
const fooValue = 1;
export foo = fooValue;
But my question is, is there any way I can convert the key of the export (foo
) in to a variable:
const fooLabel = 'foo';
const fooValue = 1;
export something(fooLabel) = fooValue;
Or do exports always have to explicitly named?
import {foo} from 'obj'
:( – Arquit