Skip to content

Latest commit

 

History

History
22 lines (21 loc) · 416 Bytes

File metadata and controls

22 lines (21 loc) · 416 Bytes

gonapps-cookie

About

Cookie for lua

Usage

installation

$ sudo luarocks install gonapps-cookie

example code

local cookieModule = require "gonapps.cookie"
local cookie = cookieModule.new("aaa=bbb; ccc=ddd; HttpOnly")
if cookie.flags["HttpOnly"] then
    print("HTTP Only Flag")
end
print("ccc", cookie.data["ccc"])
print(cookie:toString())

License

Mozilla Public License 2.0