diff options
Diffstat (limited to 'thirdparty/systemjs/test/tests/amd-format.js')
-rw-r--r-- | thirdparty/systemjs/test/tests/amd-format.js | 18 |
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'; - |