모듈 네임스페이스 내보내기2018년 12월 18일 · 약 1분마티아스 비넨스([@mathias](https://twitter.com/mathias))자바스크립트 모듈에서는 이미 다음 문법을 사용할 수 있었습니다: import * as utils from './utils.mjs'; 그러나 대칭적인 export 문법은 존재하지 않았습니다… 이번엔 다릅니다: export * as utils from './utils.mjs'; 이는 다음과 동등합니다: import * as utils from './utils.mjs';export { utils };