tor-browser

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

proto.js (528B)


      1 // Copyright (C) 2025 André Bargull. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 esid: sec-iterator.zipkeyed
      6 description: >
      7  The value of the [[Prototype]] internal slot of Iterator.zipKeyed is the
      8  intrinsic object %FunctionPrototype%.
      9 features: [joint-iteration]
     10 ---*/
     11 
     12 assert.sameValue(
     13  Object.getPrototypeOf(Iterator.zipKeyed),
     14  Function.prototype,
     15  "Object.getPrototypeOf(Iterator.zipKeyed) must return the value of Function.prototype"
     16 );
     17 
     18 reportCompare(0, 0);