Add nedge routing validation

This commit is contained in:
emanuele-f 2017-12-21 11:43:13 +01:00
parent 1508bd6a71
commit 34a9683c14
2 changed files with 22 additions and 0 deletions

View file

@ -3062,6 +3062,11 @@ function table.clone(t, filter)
return clone
end
function table.deepcopy(t)
local json = require("dkjson")
return json.decode(json.encode(t))
end
function toboolean(s)
if s == "true" then
return true