tor-browser

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

name.js (444B)


      1 // Copyright (C) 2018 Kevin Gibbons. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 description: Object.fromEntries.name is "fromEntries".
      6 esid: sec-object.fromentries
      7 includes: [propertyHelper.js]
      8 features: [Object.fromEntries]
      9 ---*/
     10 
     11 verifyProperty(Object.fromEntries, "name", {
     12  value: "fromEntries",
     13  enumerable: false,
     14  writable: false,
     15  configurable: true
     16 });
     17 
     18 reportCompare(0, 0);