The following functions and variables are part the DekiScript and Expert runtime environment.
Append path segments to a URI.
Name | Type | Description |
---|---|---|
uri | uri | base uri |
path | any | (optional) path segments to append (must a string or list of strings) |
Append query parameters to a URI.
Name | Type | Description |
---|---|---|
uri | uri | base uri |
args | map | query parameters to append |
Build a new URI with path and query parameters.
Name | Type | Description |
---|---|---|
uri | uri | base uri |
path | any | (optional) path segments to append (must a string or list of strings) |
args | map | (optional) query parameters to append |
Decode text as a URI component.
Name | Type | Description |
---|---|---|
text | str | text to decode |
Encode text as a URI component.
Name | Type | Description |
---|---|---|
text | str | text to encode |
Check if a value is a valid URI.
Name | Type | Description |
---|---|---|
value | any | (optional) uri to validate |
Decompose a URI into its component parts.
Name | Type | Description |
---|---|---|
uri | uri | uri to decompose |