aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/test/tests/global-encapsulation.js
blob: b480da8ae897ce0c9e0c51fe0ae5d211be7f03f1 (plain)
1
2
3
(function(g) {
  g.globalName = 'encapsulated global';
})(typeof window != 'undefined' ? window : global);