mirror of
https://github.com/systemjs/systemjs.git
synced 2026-01-18 14:53:14 +00:00
* Ensure that __esModule is copied to ns even if it isn't enumerable. * Self review * Self review
9 lines
172 B
JavaScript
9 lines
172 B
JavaScript
System.register([], function (_export) {
|
|
const obj = {};
|
|
|
|
Object.defineProperty(obj, '__esModule', {enumerable: false, value: true});
|
|
|
|
_export(obj);
|
|
|
|
return {};
|
|
}); |