aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/test/tests/es6-loading-amd.js
blob: 565fdd4166009a0ee722f146472c5a6cd2d20603 (plain)
1
2
3
4
5
6
7
8
9
System.register(["./es6-loading-amd-dep.js"], function($__export) {
  "use strict";
  return {
    setters: [function(m) {
      $__export("amd", m.default);
    }],
    execute: function() {}
  };
});