Nothing important.

Old local changes I never committed.
This commit is contained in:
topkecleon
2016-02-14 03:47:02 -05:00
parent 7d23fc240e
commit b1b4a0be6c
6 changed files with 21 additions and 6 deletions

View File

@ -1,9 +1,10 @@
-- utilities.lua
-- Functions shared among plugins.
HTTP = require('socket.http')
HTTPS = require('ssl.https')
JSON = require('dkjson')
-- you're welcome, brayden :^)
local HTTP = HTTP or require('socket.http')
local HTTPS = HTTPS or require('ssl.https')
local JSON = JSON or require('dkjson')
-- get the indexed word in a string
get_word = function(s, i)