// In order to use imports you must first add "type":"module"
// to your package.json
/* package.json */
{
"type":"module"
}
/* module.js */
function a() {
console.log('It Works!');
}
export { a }
/* index.js */
import { a } from './module.js';
a();