Files
phosit 252df0a1db Return the namespace of a module
To make it easy for the engine to access the exported values the
namespace is returned from the future.
2025-06-06 17:36:35 +02:00

7 lines
79 B
JavaScript

export let value = 6;
export function mutate(newValue)
{
value = newValue;
}