blob: e6eecb09f382013932457d2df1baad24469ea65b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
// Original source code for the inline source map test.
// The generated file was made with
// webpack --devtool source-map code_reload_1.js code_bundle_reload_1.js
// perl -pi -e 's/code_bundle_reload_1.js.map/sjs_code_bundle_reload_map.sjs/' \
// code_bundle_reload_1.js
"use strict";
function f() {
console.log("The first version of the script");
}
f();
|