Is there any perf difference between:
const myVar = myFunc()
export default myVar
and:
export default myFunc()
I prefer the 2nd notation (more concise, less code), but I don't know if it has an impact on performance. Each code loading this module will point to the same reference, or to a new one ?