fnGlobalObject.js 304 B

1234567891011
  1. // Copyright (C) 2017 Ecma International. All rights reserved.
  2. // This code is governed by the BSD license found in the LICENSE file.
  3. /*---
  4. description: |
  5. Produce a reliable global object
  6. ---*/
  7. var __globalObject = Function("return this;")();
  8. function fnGlobalObject() {
  9. return __globalObject;
  10. }