aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/test/tests/es6-loading-amd.js
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/systemjs/test/tests/es6-loading-amd.js')
-rw-r--r--thirdparty/systemjs/test/tests/es6-loading-amd.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/thirdparty/systemjs/test/tests/es6-loading-amd.js b/thirdparty/systemjs/test/tests/es6-loading-amd.js
new file mode 100644
index 000000000..565fdd416
--- /dev/null
+++ b/thirdparty/systemjs/test/tests/es6-loading-amd.js
@@ -0,0 +1,9 @@
+System.register(["./es6-loading-amd-dep.js"], function($__export) {
+ "use strict";
+ return {
+ setters: [function(m) {
+ $__export("amd", m.default);
+ }],
+ execute: function() {}
+ };
+});