aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/test/tests/global-shim-amd.js
blob: 9754587be8ca3cb77894eb2036af30a7f490dc0d (plain)
1
2
3
4
5
6
(function(window) {
  if (false)
    define(function() {
    });
  window.test = 'global';
})(typeof window != 'undefined' ? window : global);