Use the extension 👉 Editor
Returns a space-separated list of all the active, non-empty dictionaries.
Returns a dictionary that is converted back into JSON; for example, foo = bar
turns into { foo: bar }
Gets the key bar from dictionary foo; in bar = baz
this will return baz
.
Finds if the key bar
in dictionary foo
is not equal to undefined
.
Finds if the key bar
in dictionary foo
is null
; this usually only appears if you parse from JSON.
Works as JSON.Parse, but converts the dictionary into the special type that this extension uses; allowing you to read the data easily.
Sets key bar in the foo dictionary to baz. Essentially foo: ( bar = baz )
Adds 1 to a specific key; turns foo: ( number = 1)
into foo: ( number = 2 )
.
Removes a dictionary, deleting all keys and removing it from the list of dictionaries.
Removes a key from a dictionary, undefining it and making it not show up in the output JSON.
Could you add an example project in extensions.turbowarp.org that is a basic file system?