tor-browser

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

constructor.js (321B)


      1 // Copyright (C) 2015 André Bargull. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 es6id: 19.5.6.1
      6 description: >
      7  RangeError is a constructor function.
      8 ---*/
      9 
     10 assert.sameValue(typeof RangeError, 'function', 'typeof RangeError is "function"');
     11 
     12 reportCompare(0, 0);