2025-12-16 11:38:08
@borkdude, in your 'scittle with additional libraries' files, you have, for each file in the library, a line
SHADOW_ENV.evalLoad( <filename>, <boolean>, <???>);
where ??? is a string of JS source code with some punctuation replaced by hex codes.
The second last line appears to invoke the file itself (recursively!?!), and the last is always
SHADOW_ENV.evalLoad("shadow.module.<filename>.append.js", false, <???>);
Wha…