output.mjs 211 B

12345678910111213
  1. System.register([], function (_export, _context) {
  2. "use strict";
  3. return {
  4. setters: [],
  5. execute: function () {
  6. _export("default", function () {
  7. return "foo";
  8. }());
  9. }
  10. };
  11. });