tor-browser

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

function-length.js (411B)


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