Various fixes

fixes by Willy-JL
nfc parser by zacharyweiss
js widget and path globals by jamisonderek
This commit is contained in:
MX
2024-04-05 01:25:03 +03:00
parent 45e7913435
commit ec4b8b8f5e
14 changed files with 2137 additions and 8 deletions

View File

@@ -0,0 +1,9 @@
let storage = require("storage");
print("script has __dirpath of" + __dirpath);
print("script has __filepath of" + __filepath);
if (storage.exists(__dirpath + "/math.js")) {
print("math.js exist here.");
} else {
print("math.js does not exist here.");
}