When we have this syntax
const { somePart } = require('./someModule');
Does the compiler loads entire module in RAM to get that part?
Consider that somePart is a small amount of code, while someModule is 1GB file.
If yes, is there a way to get a part of a large module without loading all of it?
Thanks.