tor-browser

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

code_no_race.js (382B)


      1 /* Any copyright is dedicated to the Public Domain.
      2 http://creativecommons.org/publicdomain/zero/1.0/ */
      3 
      4 // Original source code for the inline source map test.
      5 // The generated file was made with
      6 //    webpack --devtool source-map code_no_race.js code_bundle_no_race.js
      7 
      8 "use strict";
      9 
     10 function f() {
     11  console.log("anything will do");
     12 }
     13 
     14 f();
     15 
     16 // Avoid script GC.
     17 window.f = f;