tor-browser

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

code_late_script.js (398B)


      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_late_script.js --output code_bundle_late_script.js --mode development
      7 
      8 "use strict";
      9 
     10 function f() {
     11  console.log("The first version of the script");
     12 }
     13 
     14 f();