input.js (402B)
1 import aDefault from "./src/mod1"; 2 3 export default function root() { 4 let one = 1; 5 6 { 7 const two = 2; 8 9 var fn = function someName(arg) { 10 console.log(this, arguments); 11 console.log("pause here", aDefault, one, two, fn, arg); 12 13 var inner = (arg) => { var body = "42"; console.log("pause here", body, root); }; 14 inner(); 15 }; 16 fn.call("this-value", "arg-value"); 17 } 18 }