aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/test/tests/umd.js
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/systemjs/test/tests/umd.js')
-rw-r--r--thirdparty/systemjs/test/tests/umd.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/thirdparty/systemjs/test/tests/umd.js b/thirdparty/systemjs/test/tests/umd.js
deleted file mode 100644
index 7faad2ba9..000000000
--- a/thirdparty/systemjs/test/tests/umd.js
+++ /dev/null
@@ -1,10 +0,0 @@
-(function (root, factory) {
- if (typeof define === 'function' && define.amd)
- define(['./umd-dep.js'], function(dep) {
- return (root.amdWebGlobal = factory(dep));
- });
- else
- root.amdWebGlobal = factory(root.dep);
-}(this, function(dep) {
- return { d: dep.dep };
-}));