code_cross_domain.js (482B)
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 source-map code_cross_domain.js code_bundle_cross_domain.js 7 // ... and then the bundle was edited to replace the generated 8 // sourceMappingURL. 9 10 "use strict"; 11 12 function f() { 13 console.log("anything will do"); 14 } 15 16 f(); 17 18 // Avoid script GC. 19 window.f = f;