summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/sourcemapped/fixtures/type-script-cjs/input.js
blob: 6032b04036782f3ab8f1fd5d16bc83f5a092bc70 (plain)
1
2
3
4
5
6
7
8
9
10
var moduleScoped = 1;
let alsoModuleScopes = 2;

function thirdModuleScoped() {}

function nonModules() {
  console.log("pause here");
}

exports.default = nonModules;