import { SeniorSoftwareEngineer } from 'Capgemini';
const Bartek = SeniorSoftwareEngineer({
age: 30,
exp: [
'React',
'Angular',
'SSR',
'node.js',
'Java',
'Spring',
],
interests: [
'pwa','amp',
'universal','web',
'functional', 'reactive',
'performance', 'clean-code',
],
trainer: true,
});
export const software = Bartek.code({quality: 'good'});
<!-- Browsers with ES module support load this file. -->
<script type="module" src="main.mjs"></script>
<!-- Older browsers load this file (and module-supporting -->
<!-- browsers know *not* to load this file). -->
<script nomodule src="main.es5.js"></script>