I have this content in script_a.js:
let data = 'some data that can only be created once.';
let script_b = require('./script_b.js');
In script_b.js, I want to get the content of the data variable in script_a.js from when the script was originally run. I can't just recreate the variable due to the way I'm using it. How can I accomplish this?