Are there any open proposals/discussions related to creating ES modules inline? For example:
```
import getPersonType from School
module School {
export function getPersonType (person) {
switch (person) {
case 'Teacher': return 'A teacher'
case 'Director': return 'A director'
}
}
}
```
_______________________________________________ es-discuss mailing list [email protected] https://mail.mozilla.org/listinfo/es-discuss

