mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-06-03 18:23:33 -07:00
ec4b8b8f5e
fixes by Willy-JL nfc parser by zacharyweiss js widget and path globals by jamisonderek
9 lines
262 B
JavaScript
9 lines
262 B
JavaScript
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.");
|
|
} |