code_inline_original.js (377B)
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 inline-source-map code_inline_original.js code_inline_bundle.js 7 8 "use strict"; 9 10 function f() { 11 console.log("I'm a goldfish with a merry face"); 12 } 13 14 f();