code_nosource.js (453B)
1 /* Any copyright is dedicated to the Public Domain. 2 http://creativecommons.org/publicdomain/zero/1.0/ */ 3 4 // Original source code for the cross-domain source map test. 5 // The generated file was made with 6 // webpack --devtool nosources-source-map code_nosource.js code_bundle_nosource.js 7 // ... and then the bundle was edited to change the source name. 8 9 "use strict"; 10 11 function f() { 12 console.log("here"); 13 } 14 15 f(); 16 17 // Avoid script GC. 18 window.f = f;