const testFunc = (() => {
	const a = 1
	const b = {
		v: 2
	}
	return b
})

console.log(testFunc)   // { v: 2 }
console.log(testFunc.a) // undefined