17 lines
479 B
Lua
17 lines
479 B
Lua
--- === hs.json ===
|
|
---
|
|
--- JSON encoding and decoding
|
|
---
|
|
--- This module is based partially on code from the previous incarnation of Mjolnir by [Steven Degutis](https://github.com/sdegutis/).
|
|
---
|
|
|
|
local module = require("hs.libjson")
|
|
|
|
-- private variables and methods -----------------------------------------
|
|
|
|
-- Public interface ------------------------------------------------------
|
|
|
|
-- Return Module Object --------------------------------------------------
|
|
|
|
return module
|