input.js (229B)
1 function test(a1, a2 = 45, { a3, a4, a5: { a6: a7 } = {} } = {}) { 2 console.log("pause next here"); 3 } 4 5 export default function fn() { 6 console.log("pause here"); 7 test("1", undefined, { a3: "3", a4: "4", a5: { a6: "7" } }); 8 }