Removed the Requirement to Install Python and NodeJS (Now Bundled with Borealis)

This commit is contained in:
2025-04-24 00:42:19 -06:00
parent 785265d3e7
commit 9c68cdea84
7786 changed files with 2386458 additions and 217 deletions

View File

@ -0,0 +1 @@
{"this-str-has-apostrophes": {"type": "string", "value": "' there's one already\n'' two more\n''"}}

View File

@ -0,0 +1,3 @@
this-str-has-apostrophes='''' there's one already
'' two more
'''''

View File

@ -0,0 +1,11 @@
{"arr":
{"type":"array","value":
[
{"subtab":
{"val": {"type":"integer","value":"1"}
}
},
{"subtab": {"val": {"type":"integer","value":"2"}}}
]
}
}

View File

@ -0,0 +1,7 @@
[[arr]]
[arr.subtab]
val=1
[[arr]]
[arr.subtab]
val=2

View File

@ -0,0 +1,6 @@
{
"parent-table": {
"arr": {"type":"array","value":[{},{}]},
"not-arr": {"type":"integer","value":"1"}
}
}

View File

@ -0,0 +1,4 @@
[[parent-table.arr]]
[[parent-table.arr]]
[parent-table]
not-arr = 1

View File

@ -0,0 +1,4 @@
{
"a": {"type":"bool","value":"true"},
"b": {"type":"bool","value":"false"}
}

View File

@ -0,0 +1,2 @@
'a'=true
"b"=false

View File

@ -0,0 +1,4 @@
{
"local-dt": {"type":"datetime-local","value":"1988-10-27t01:01:01"},
"zulu-dt": {"type":"datetime","value":"1988-10-27t01:01:01z"}
}

View File

@ -0,0 +1,2 @@
local-dt=1988-10-27t01:01:01
zulu-dt=1988-10-27t01:01:01z

View File

@ -0,0 +1,2 @@
{"t":
{"type":"time-local","value":"00:00:00.999999"}}

View File

@ -0,0 +1 @@
t=00:00:00.99999999999999

View File

@ -0,0 +1 @@
{"empty": {}}

View File

@ -0,0 +1 @@
empty ={ }#nothing here

View File

@ -0,0 +1,4 @@
{
"five-quotes": {"type":"string","value":"Closing with five quotes\n\"\""},
"four-quotes": {"type":"string","value":"Closing with four quotes\n\""}
}

View File

@ -0,0 +1,6 @@
five-quotes = """
Closing with five quotes
"""""
four-quotes = """
Closing with four quotes
""""

View File

@ -0,0 +1,5 @@
{
"a": {"type":"string","value":"a"},
"b": {"type":"string","value":"b"},
"c": {"type":"string","value":"c"}
}

View File

@ -0,0 +1,3 @@
a="\u0061"
b="\u0062"
c="\U00000063"

View File

@ -0,0 +1 @@
{"beee": {"type": "string", "value": "heeee\ngeeee"}}

View File

@ -0,0 +1,6 @@
beee = """
heeee
geeee\
"""

View File

@ -0,0 +1 @@
{}

View File

@ -0,0 +1 @@
#no newlines at all here

View File

@ -0,0 +1,7 @@
{"arr":
{"type":"array","value":
[
{"type":"integer","value":"1"}
]
}
}

View File

@ -0,0 +1 @@
arr=[1,]