tor-browser

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

value.js (533B)


      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.LOG10E is a numeric value
      5 esid: sec-math.log10e
      6 info: |
      7    The Number value for the base-10 logarithm of e, the base of the natural
      8    logarithms; this value is approximately 0.4342944819032518.
      9 
     10    The precision of this approximation is host-defined.
     11 ---*/
     12 
     13 assert.sameValue(typeof Math.LOG10E, 'number');
     14 assert.notSameValue(Math.LOG10E, NaN);
     15 
     16 reportCompare(0, 0);