mirror of
https://github.com/google/blockly.git
synced 2026-01-09 10:00:09 +01:00
* Add annotations to files under core/events * Add annotations to files under core/interfaces * Add annotations to files under core/keyboard_nav * Add annotations to files under core/renderers * Add annotations to files under core/serialization * Add annotations to files under core/theme * Add annotations to files under core/toolbox * Add annotations to files under core/utils * Add annotations to files under core
41 lines
859 B
JavaScript
41 lines
859 B
JavaScript
/**
|
|
* @license
|
|
* Copyright 2019 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Provides a reference to the global object.
|
|
* @author samelh@google.com (Sam El-Husseini)
|
|
*/
|
|
'use strict';
|
|
|
|
/**
|
|
* Provides a reference to the global object.
|
|
* @namespace Blockly.utils.global
|
|
*/
|
|
goog.module('Blockly.utils.global');
|
|
|
|
|
|
/**
|
|
* Reference to the global object.
|
|
*
|
|
* More info on this implementation here:
|
|
* https://docs.google.com/document/d/1NAeW4Wk7I7FV0Y2tcUFvQdGMc89k2vdgSXInw8_nvCI
|
|
*/
|
|
exports.globalThis = (function() { // Not "let globalThis" to avoid shadowing.
|
|
if (typeof globalThis === 'object') {
|
|
return globalThis;
|
|
}
|
|
if (typeof self === 'object') {
|
|
return self;
|
|
}
|
|
if (typeof window === 'object') {
|
|
return window;
|
|
}
|
|
if (typeof global === 'object') {
|
|
return global;
|
|
}
|
|
return this;
|
|
})();
|