aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/test/tests/module-name.js
blob: 4076c2b6e6a881dba4321302703c3f0eb4b0e51d (plain)
1
2
3
4
5
6
7
8
System.register([], function(_export, _context) {
  return {
    setters: [],
    execute: function() {
      _export('name', _context.id);
    }
  };
})