_ARGS - njlg/mod_sq GitHub Wiki

_ARGS is a table that contains all the request's arguments.

Example

If the following request was made

GET /test.nut?key1=val1&key2=val2

Then _ARGS would contain:

_ARGS = {
    key1 = val1
    key2 = val2
}