2016-09-28 19:53:50 +02:00
|
|
|
// Copyright (C) 2016 Jordan Harband. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
|
|
/*---
|
2018-07-26 02:11:53 +02:00
|
|
|
esid: sec-other-properties-of-the-global-object-globalthis
|
|
|
|
description: "'globalThis' should be writable, non-enumerable, and configurable"
|
2016-09-28 19:53:50 +02:00
|
|
|
author: Jordan Harband
|
|
|
|
includes: [propertyHelper.js]
|
2018-07-26 02:11:53 +02:00
|
|
|
features: [globalThis]
|
2016-09-28 19:53:50 +02:00
|
|
|
---*/
|
|
|
|
|
2018-07-26 02:11:53 +02:00
|
|
|
verifyProperty(this, "globalThis", {
|
2018-06-19 00:00:19 +02:00
|
|
|
enumerable: false,
|
|
|
|
writable: true,
|
|
|
|
configurable: true,
|
|
|
|
});
|