tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

propertyhelper-verifyconfigurable-configurable-object.js (398B)


      1 // Copyright (C) 2019 Bocoup. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 description: >
      6    Objects whose specified property is configurable satisfy the assertion.
      7 includes: [propertyHelper.js]
      8 ---*/
      9 
     10 Object.defineProperty(this, 'Object', {
     11  configurable: true,
     12  value: Object
     13 });
     14 
     15 verifyConfigurable(this, 'Object');
     16 
     17 reportCompare(0, 0);