tor-browser

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

prop-desc.js (579B)


      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 esid: sec-decodeuri-encodeduri
      6 description: >
      7  Property descriptor for decodeURI
      8 info: |
      9  Every other data property described in clauses 18 through 26 and in Annex B.2
     10  has the attributes { [[Writable]]: true, [[Enumerable]]: false,
     11  [[Configurable]]: true } unless otherwise specified.
     12 includes: [propertyHelper.js]
     13 ---*/
     14 
     15 verifyProperty(this, "decodeURI", {
     16  writable: true,
     17  enumerable: false,
     18  configurable: true
     19 });
     20 
     21 reportCompare(0, 0);