Nutze wieder dkjson, sorry!

This commit is contained in:
Andreas Bielawski 2016-08-03 19:21:07 +02:00
parent 74ab78322d
commit 29bf5c84fe
2 changed files with 4 additions and 3 deletions

View File

@ -29,7 +29,7 @@ Du benötigst **Lua 5.2+**, eine aktive **Redis-Instanz** und die folgenden **Lu
* luasocket
* luasec
* multipart-post
* lua-cjson
* dkjson
* lpeg
* redis-lua
* fakeredis

View File

@ -8,7 +8,8 @@ http = require('socket.http')
https = require('ssl.https')
socket = require('socket')
URL = require('socket.url')
json = require "cjson"
json = require("dkjson")
pcall(json.use_lpeg)
serpent = require("serpent")
bindings = require('otouto.bindings')
redis = (loadfile "./otouto/redis.lua")()
@ -259,7 +260,7 @@ function string:isempty()
return self == nil or self == ''
end
-- Retruns true if the string is blank
-- Returns true if the string is blank
function string:isblank()
self = self:trim()
return self:isempty()