зеркало из https://github.com/mozilla/gecko-dev.git
15 строки
377 B
JavaScript
15 строки
377 B
JavaScript
/* 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 inline-source-map code_inline_original.js code_inline_bundle.js
|
|
|
|
"use strict";
|
|
|
|
function f() {
|
|
console.log("I'm a goldfish with a merry face");
|
|
}
|
|
|
|
f();
|