tor-browser

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

value.js (480B)


      1 // Copyright (C) 2016 the V8 project authors. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 /*---
      4 description: Math.LN2 is a numeric value
      5 esid: sec-math.ln2
      6 info: |
      7    The Number value for the natural logarithm of 2, which is approximately
      8    0.6931471805599453.
      9 
     10    The precision of this approximation is host-defined.
     11 ---*/
     12 
     13 assert.sameValue(typeof Math.LN2, 'number');
     14 assert.notSameValue(Math.LN2, NaN);
     15 
     16 reportCompare(0, 0);