tor-browser

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

shell.js (419B)


      1 /*---
      2 defines: [SOME_PRIMITIVE_VALUES]
      3 allow_unused: True
      4 ---*/
      5 
      6 // List of a few values that are not objects.
      7 var SOME_PRIMITIVE_VALUES = [
      8    undefined, null,
      9    false,
     10    -Infinity, -1.6e99, -1, -0, 0, Math.pow(2, -1074), 1, 4294967295,
     11    Number.MAX_SAFE_INTEGER, Number.MAX_SAFE_INTEGER + 1, 1.6e99, Infinity, NaN,
     12    "", "Phaedo",
     13    Symbol(), Symbol("iterator"), Symbol.for("iterator"), Symbol.iterator
     14 ];