Why is not the some variable changed to other strings?
some
other strings
the module.exports.some = some; line in mod.js only exported the value of the some variable at the time the line was executed. In this case, the exported value was "String exec".
module.exports.some = some;
mod.js
"String exec"