aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/test/tests/amd-format.js
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/systemjs/test/tests/amd-format.js')
-rw-r--r--thirdparty/systemjs/test/tests/amd-format.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/thirdparty/systemjs/test/tests/amd-format.js b/thirdparty/systemjs/test/tests/amd-format.js
deleted file mode 100644
index 3bc01fe38..000000000
--- a/thirdparty/systemjs/test/tests/amd-format.js
+++ /dev/null
@@ -1,18 +0,0 @@
-/*
- this is AMD
-*/
-// works with comments!!!
-/*
- At least I hope so
-*/
-"amd";
-
-var m = {
- amd: 'amd'
-};
-define(m);
-
-// attempt to fool amd detection
-if (typeof module != 'undefined')
- module.exports = 'hello';
-