2017-07-14 17:37:24 +02:00
|
|
|
// Copyright (C) 2017 Ecma International. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
|
|
description: |
|
|
|
|
Produce a reliable global object
|
2019-09-25 02:22:26 +02:00
|
|
|
defines: [fnGlobalObject]
|
2017-07-14 17:37:24 +02:00
|
|
|
---*/
|
|
|
|
|
2014-07-19 00:22:37 +02:00
|
|
|
var __globalObject = Function("return this;")();
|
|
|
|
function fnGlobalObject() {
|
2017-04-13 16:37:32 +02:00
|
|
|
return __globalObject;
|
2014-07-19 00:22:37 +02:00
|
|
|
}
|