function al() { alert("al"); }
// index.js export { al } from './second';al();
// second.js export function al() { console.log("Hello from al"); }